So this is my code:
name = input("So, what is your name? ")
if name.isalpha():
print ("So your name is " +(name) + "? Awesome.")
else:
print ("That's not a real name! Try again...")
I want to figure out how to return to the original question after the player doesn't type in a real name. This is my first day of using Python (and any language, really) so don't use anything too advanced for me :)
Also, how can I make the first letter of the players name automatically capitalize if it isn't already?