Last active
February 7, 2019 03:59
-
-
Save Ventsislav-Yordanov/6fe8af70de1a6fe702aa103e9d0c67f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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