Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created September 16, 2020 17:31
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 codecademydev/4d94e16ed36cba45fd832746e234b515 to your computer and use it in GitHub Desktop.
Save codecademydev/4d94e16ed36cba45fd832746e234b515 to your computer and use it in GitHub Desktop.
Codecademy export
sales_data = [[12, 17, 22], [2, 10, 3], [5, 12, 13]]
scoops_sold = 0
for location in sales_data:
print(location)
for i in location:
i += scoops_sold
print(scoops_sold)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment