name_list = ["Alex","Alin","Cosmin","Matei","Vlad"] game_list = ["CS GO","Roblox","Far cry 5","Rust","Minecraft"] sport_list = ["football","swimming","basketball","cycling","runing"] career_list = ["game developer","artist","designer","streamer","manager"] music_list = ["pop","clasic","rap","rock","electro"] while True: print ("Hi my name is Rares") name = input ("What is your name:").strip() print ("Hi {}!".format(name)) if name in name_list: print("Welcome!") remove = input("Would you like to be removed from the system(y/n)?:") if remove == "y" or remove == "Y": name_list.remove (name) elif remove =="n" or remove=="N": print("No problem,i didn't want you to leave anyway") else: print("Hmm i don't think i have met you yet,{}".format(name)) add_user=input("Would you like to be added to the user list (y/n)?:").strip() if add_user=="y" or add_user=="Y": name_list.append(name) elif add_user=="n" or add_user=="N": print("Goodbye!") game = input ("What is your favorite game:").strip() print ("{} is your favorite game.".format(game)) if game in game_list: print ("I heard {} its a intresting game!".format(game)) remove = input("Would you like your favorite game to be removed from system(y/n)?:") if remove == "y" or remove == "Y": game_list.remove (game) elif remove =="n" or remove=="N": print("No problem, I want to know what is your favorite game anyway") else: print("Hmm...i never heard about {}. ".format(game)) add_game=input("Would you like to add your favorite game to game list (y/n)?:").strip() if add_game=="y" or add_game=="Y": game_list.append(game) elif add_game=="n" or add_game=="N": print("Ok i won't add your favorite game to the list") sport = input ("What is your favorite sport:").strip() if sport in sport_list: print("I heard {} it is a very fun sport.".format(sport)) remove = input("Would you like your favorite sport to be removed from the system(y/n)?:") if remove == "y" or remove == "Y": sport_list.remove (sport) elif remove =="n" or remove=="N": print("No problem,i want to know what is your favorite sport anyway") else: print("Hmm...i never heard about {}".format(sport)) add_sport=input("Would you like your favorite sport to be added to the sport list (y/n)?:").strip() if add_sport=="y" or add_user=="Y": sport_list.append(sport) elif add_sport=="n" or add_sport=="N": print("Ok i won't add your favorite sport to the list") career = input ("What is your dream career:").strip() if career in career_list: print("I heard you can make a lot of money from being a {}".format(career)) remove = input("Would you like your dream career to be removed from the system(y/n)?:") if remove == "y" or remove == "Y": career_list.remove (career) elif remove =="n" or remove=="N": print("No problem,i want to know what is your dream career anyway") else: print("Hmm... I don't heard about {}".format(career)) add_career=input("Would you like your dream career to be added to the list (y/n)?:").strip() if add_career=="y" or add_career=="Y": career_list.append(career) elif add_career=="n" or add_career=="N": print("Ok i won't add your dream career to the list") color = input ("What is your favorite color:").strip() print("Ok I will rememeber your favorite color is {}.".format(color)) age= input("How old are you?").strip() print("Ok I will rememeber you age is {}".format(age)) grade= input("What grade are you?").strip() print("Ok I will rememeber you grade is {}".format(grade)) music = input ("What is your favorite music genre:").strip() print ("{} is your favorite music genre!".format(music)) if music in music_list: print("You have good taste in music") remove = input("Would you like to remove your favorite music genre from the system(y/n)?:") if remove == "y" or remove == "Y": music_list.remove (music) elif remove =="n" or remove=="N": print("No problem, i want to remove your favorite music genre anyway.") else: print("Hmm... I don't think heard about {}".format(music)) add_music=input("Would you like to add your favorite music genre to the list (y/n)?:").strip() if add_music=="y" or add_music=="Y": music_list.append(music) elif add_music=="n" or add_music=="N": print("See you later!")