python-lab Python Lab: Multi-Line Comments One of the frustrating things for Python developers is that there is no block comment functionality where you can comment out multiple lines in one go. Today on the Python Lab, we take a look at how we can use a small hack to achieve this functionality.
python-lab Python Lab: Pretty Print a list Today on Python Lab, we have a quick and easy way to print out all the items of an iterable (list, set, dict etc) one below the other. I find this a great way to clearly read items in a list when debugging.