Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Last active February 7, 2019 03:59
Show Gist options
  • Save Ventsislav-Yordanov/6fe8af70de1a6fe702aa103e9d0c67f2 to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/6fe8af70de1a6fe702aa103e9d0c67f2 to your computer and use it in GitHub Desktop.
smoothie_fruits = ("Pineapple", "orange", "banana", "apple")
for count, fruit in enumerate(smoothie_fruits):
print(count, fruit)
print()
libraries = ["pandas", "scikit-learn", "seaborn"]
for count, library in enumerate(libraries):
print(count, library)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment