Tuples are technically just immutable lists, but by convention we tend to use tuples and lists for quite different purposes.| www.pythonmorsels.com
Python Morsels bullet points exercise: Utilities for parsing nested bullet points| www.pythonmorsels.com
Python Morsels get_vowel_names exercise: Find all the names starting with a vowel| www.pythonmorsels.com
Sign up for Python Morsels to improve your Python skills in just 60 minutes every week.| www.pythonmorsels.com
Sign in to your Python Morsels account.| www.pythonmorsels.com
Python's strings have dozens of methods, but some are much more useful than others. Let's discuss the dozen-ish must-know string methods and why the other methods aren't so essential.| www.pythonmorsels.com
In Python, slicing looks like indexing with colons (:). You can slice a list (or any sequence) to get the first few items, the last few items, or all items in reverse.| www.pythonmorsels.com