Problem with python validation loop.
Have a problem with a loop in python , i want this loop to let pass the user only if this user write one of the following variable : - chifoumi - starshooter_game - jeu_d_animation but for some reasons this doesnt work even when i type correctly , im pretty sure it's a logic problem , it's certainly not the way python validation loop work but i'm newbie so , i don't know a lot of ways to create this kind of thing. Here is the code : # sorry if the code isn't english... chifoumi = "chifoumi" starshooter_game = "Star shooter game" Jeu_d_animation = "Jeu d'animation" jeuchoisi = input(str("Le jeu auquel tu veux jouer : ")) while jeuchoisi != chifoumi or jeuchoisi != starshooter_game or jeuchoisi != Jeu_d_animation : print("tu t\'es trompé dans l\'orthographe ") jeuchoisi = input(str("Le jeu auquel tu veux jouer : ")) print("donc tu souhaites jouer à " + jeuchoisi )