Skip to content

Instantly share code, notes, and snippets.

@calthoff
Created August 28, 2021 01:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save calthoff/5aeda6fd2c35d26a69c1bdca5460cd7f to your computer and use it in GitHub Desktop.
Save calthoff/5aeda6fd2c35d26a69c1bdca5460cd7f to your computer and use it in GitHub Desktop.
import random
a_list = []
for i in range(0, 20):
j = random.randint(1, 30)
a_list.append(j)
print(j, end= " ")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment