Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@BetterProgramming
Created January 27, 2020 01:27
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 BetterProgramming/36d94f2871cf70848776b278f6c8cc4d to your computer and use it in GitHub Desktop.
Save BetterProgramming/36d94f2871cf70848776b278f6c8cc4d to your computer and use it in GitHub Desktop.
# Generate 5 rows x 5 columns
data = []
for x in range(5):
row = []
for y in range(5):
row.append(randint(0, 10))
data.append(row)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment