Skip to content

Instantly share code, notes, and snippets.

@alexanderawwagner
Created March 5, 2021 14:41
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 alexanderawwagner/b420e0306786f5a8e90e38a6d416cbc4 to your computer and use it in GitHub Desktop.
Save alexanderawwagner/b420e0306786f5a8e90e38a6d416cbc4 to your computer and use it in GitHub Desktop.
Medium_04_Python Course-Part 04- Control Structures
s = []
for i in range(10):
s.append(i * i)
print("Value with for loop: ", s)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment