I'm new to Python wondered if someone could explain how I can use this games object to save to when user inputs all the different variables and then print the results.
Class games:
   def __init__(self, name, platform, genre, no_of_players, online_functionality):
        self.name = name
        self.platform = platform
        self.genre = genre
        self.players = no_of_players
        self.functionality = online_functionality
        games.games_list.append(self)
