Skip to content

Instantly share code, notes, and snippets.

@sammoorhouse
Created February 21, 2019 12:05
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 sammoorhouse/dbb29fa1bb54c63328f1ba47229724fe to your computer and use it in GitHub Desktop.
Save sammoorhouse/dbb29fa1bb54c63328f1ba47229724fe to your computer and use it in GitHub Desktop.
print("hello")
a = [1, 15, 94, 13, 12, 11, 5, 22, 65]
b = 3 * 2
def printNums():
for n in range(9):
print(a[n] + b)
printNums()
printNums()
printNums()
print ("goodbye")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment