I would like this program to only accept as inputted text any of "yes ,"y", "Yes"
but for some reason when I input one of them nothing happens and the loop below doesn't seem to run:
import time
print ("Welcome to my first ever RPG! created 10/07/2016")
time.sleep(2)
begin = raw_input("Would you like to start the game?")
Start = False
if begin == ("yes" , "y" , "Yes" ):
Start == True
while Start == True:
player_name = raw_input("What would you like to name your character")
print ("welcome " + player_name.capitalize())
(PS: simplest solution preferred, I'm sort of new to python)