所以我有这个游戏:
import sys
def Start():
print("Hello and welcome to my first Python game. I made it for fun and because I am pretty bored right now.")
print("I hope you enjoy my EPIC TEXT GAME")
play = input("do you want to play? (Y / N) ")
if play == "Y":
game()
if play == "N":
sys.exit()
def game():
print("That's pretty much what I've done so far! :P -- yea yea, it's nothing -- IT IS!. Bye now")
input("Press enter to exit")
如果我输入“Y”我想去游戏()。它没有。