This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Keybase proof | |
| I hereby claim: | |
| * I am mars2380 on github. | |
| * I am mars2380 (https://keybase.io/mars2380) on keybase. | |
| * I have a public key ASAJgJ3HpVBmEi-w2NBdZdtXDUOcSiafsWQ3p8hPzTl0Qgo | |
| To claim this, I am signing this object: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| gameControl = True | |
| while gameControl: | |
| numEnter = (input("Enter a number: ")) | |
| checkEnter = (input("Enter a number to divide by: ")) | |
| if numEnter or checkEnter == "q": | |
| gameControl = False | |
| print("Game Over") | |
| else: | |
| num = int(numEnter) | |
| check = int(checkEnter) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import datetime | |
| now = datetime.datetime.now() | |
| year = now.year | |
| name = input("Give me your name: ") | |
| print("Your name is " + name) | |
| valid_input = False | |
| while not valid_input: |