Skip to content

Instantly share code, notes, and snippets.

@akionsight
Last active October 16, 2020 07:21
Show Gist options
  • Save akionsight/992e8ebdf3581935282e65eb252ef016 to your computer and use it in GitHub Desktop.
Save akionsight/992e8ebdf3581935282e65eb252ef016 to your computer and use it in GitHub Desktop.
Print a random numbers between 1 and 100
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