Skip to content

Instantly share code, notes, and snippets.

@spheppner
Created June 6, 2018 14:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spheppner/fd42023c7a9b93daa86b8f27e28e548e to your computer and use it in GitHub Desktop.
Save spheppner/fd42023c7a9b93daa86b8f27e28e548e to your computer and use it in GitHub Desktop.
Simple menu to program yourself! (python3)
import os
menu = """#####################
# #
# [C]redits #
# [E]xit #
# #
#####################"""
def clear():
try:
os.system("cls")
else:
os.system("clear")
while True:
clear()
print(menu)
c = input(">>> ").lower
if c == "c":
print("--- Credits ---\nProgrammed by Simon HEPPNER")
continue
elif c == "e":
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment