Skip to content

Instantly share code, notes, and snippets.

@XChrisUnknownX
Created September 27, 2018 18:33
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 XChrisUnknownX/55a5ff2a1421554ea5c9ef40b2a73191 to your computer and use it in GitHub Desktop.
Save XChrisUnknownX/55a5ff2a1421554ea5c9ef40b2a73191 to your computer and use it in GitHub Desktop.
MarcGreenbergIsAwesome.py
import time
import random
#can be used on any computer with python 3 installed or the debugger at
# https://www.onlinegdb.com/online_python_debugger
# inspired by a Facebook comment with the man who made the For the Record documentary.
awesome = "awesome"
MarcGreenberg = awesome
print("Enter",end=" ")
time.sleep(.33)
print("your",end=" ")
time.sleep(.33)
print("name",end=" ")
time.sleep(.33)
print("without",end=" ")
time.sleep(.33)
print("any",end=" ")
time.sleep(.33)
print("punctuation",end=": ")
name = input()
print()
while MarcGreenberg == awesome:
stenography = random.choice(["the best","amazing","awesome","unstoppable","the greatest","the smartest","the swiftest","indefatigable"])
print(name,end=" ")
time.sleep(.33)
print("is",end=" ")
time.sleep(.33)
print(stenography,end="!")
time.sleep(.66)
print()
print()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment