Skip to content

Instantly share code, notes, and snippets.

@thanoskoutr
Created April 23, 2021 22:47
Show Gist options
  • Save thanoskoutr/d0caaf42ab2c1b7a8b35572309842623 to your computer and use it in GitHub Desktop.
Save thanoskoutr/d0caaf42ab2c1b7a8b35572309842623 to your computer and use it in GitHub Desktop.
A simple python program that initializes a list with 100 elements and prints it.
#!/usr/bin/python3
a = []
for i in range(0,100):
a.append(i)
for i in a:
print(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment