Files
basic-computer-games/48_High_IQ/python/High_IQ.py
Thomas Kwashnak 24313121ca Started python function layout
Totally not doing this through github.com
2022-01-04 12:00:29 -05:00

14 lines
288 B
Python

def print_instructions():
print("This is where you will find instructions")
def play_game():
print("Lets play a game")
def main():
if input("Do you want instrunctions?").lower().startswith("y"):
print_instructions()
if __name__ == "__main__":
main()