Last active
October 16, 2020 07:21
-
-
Save akionsight/992e8ebdf3581935282e65eb252ef016 to your computer and use it in GitHub Desktop.
Print a random numbers between 1 and 100
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 random | |
print(random.randint(1, 100)) | |
## can give answers such as 45, 97, 12 3, 88 etc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment