Python Morsels (@pythonmorsels) 's Twitter Profile
Python Morsels

@pythonmorsels

Giving life-long learners a low-stress way to hone their #Python skills. 🐍🍪 Write beautiful code. ✨ Made by @treyhunner 💖

ID: 957073877787529217

linkhttp://pythonmorsels.com calendar_today27-01-2018 02:12:48

1,1K Tweet

7,7K Followers

5 Following

Python Morsels (@pythonmorsels) 's Twitter Profile Photo

You'll almost always see tuple unpacking used whenever enumerate is used. for n, fruit in enumerate(favorite_fruits, start=1): print(n, fruit) #Python pym.dev/looping-with-i…