Python's strings have methods for checking whether a string starts or ends with specific text and for removing prefixes and suffixes.| www.pythonmorsels.com
The string title method falls down when title-casing contractions. What's a good alternative to the title method? Or is there one?| www.pythonmorsels.com
Strings can be split by a substring separator. Usually the string split is called without any arguments, which splits on any whitespace.| www.pythonmorsels.com
Strings are used to store text-based data.| www.pythonmorsels.com
Python crashed with the error TypeError: can only concatenate str (not "int") to str. Essentially Python's saying you've used + between a string and a number and it's unhappy about it. Let's talk about how to fix this issue and how to avoid it more generally.| www.pythonmorsels.com
Python's built-in functions list includes 71 functions now! Which built-in functions are worth knowing about? And which functions should you learn later?| www.pythonmorsels.com
Python's None value is used to represent nothingness. None is the default function return value.| www.pythonmorsels.com