Python Snippets Quick Sequence Reversal in Python Python lists have a handy method called reverse, but it's not always what we want. For a start, we can't use it on other sequence types, like tuples and strings, and it also
Python Snippets More Uses for Else in Python Get familiar with the different uses for else in Python. It's not just for if statements: we can use it with loops, and for error handling too!