Skip to content

Instantly share code, notes, and snippets.

@JIgtiey84
Created October 14, 2022 00:19
Show Gist options
  • Save JIgtiey84/a634e86d1795a9e9f34ebffffb10a402 to your computer and use it in GitHub Desktop.
Save JIgtiey84/a634e86d1795a9e9f34ebffffb10a402 to your computer and use it in GitHub Desktop.
B = input("Type anything to show title ")
print ("The title is (Title)")
A = input("Type anything to start story, Otherwise type Exit exactly as shown to Close program ")
if A == ("Exit"):
exit()
print("This is paragraph one.")
A = input("Type anything to continue story, Otherwise type Exit exactly as shown to Close program ")
if A == ("Exit"):
exit()
print("This is paragraph two.")
A = input("Type anything to continue story, Otherwise type Exit exactly as shown to Close program ")
if A == ("Exit"):
exit()
print("This is ending")
A = input("Type anything to exit story ")
if A == (A):
exit()
@JIgtiey84
Copy link
Author

Remember you can always add more paragraphs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment