Skip to content

Instantly share code, notes, and snippets.

@kkt-ee
Created January 1, 2020 15:12
Show Gist options
  • Save kkt-ee/d3f0aa355d8b50ef793a4e717a5f22ec to your computer and use it in GitHub Desktop.
Save kkt-ee/d3f0aa355d8b50ef793a4e717a5f22ec to your computer and use it in GitHub Desktop.
Printing random integers in between 1 and 10 random.randint(1,10)
import random
for i in range(5):
print(random.randint(1, 10))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment