Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created January 16, 2021 11:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/11ad9c4cd886d556d40e4c9656235446 to your computer and use it in GitHub Desktop.
Save amankharwal/11ad9c4cd886d556d40e4c9656235446 to your computer and use it in GitHub Desktop.
name = str(input("Enter Your Name: "))
print(f"{name} you are stuck at work")
print(" You are still working and suddenly you you saw a ghost, Now you have two options")
print("1.Run. 2.Jump from the window")
user = int(input("Choose 1 or 2: "))
if user == 1:
print("You did it")
elif user == 2:
print("You are not that smart")
else:
print("Please Check your input")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment