Reading Time: 21 minutesKnow-How(s) Every Pythonista Must Know Know-How(s) Every Pythonista Must Know Python is an extremely versatile language. Its builtin capability along with its vast community lets you do almost anything. Below […]
Month: December 2016
Python: The builtin sorted() in detail
Reading Time: 1 minutessorted() in Python sorted() in Python You can use the command sorted(list1) to sort the elements of a list. You can give it a custom comparison function, and for more […]
Python: The builtin min() & max() in detail
Reading Time: 2 minutesmin() & max() in Python min() & max() in Python The builtin max() and min() functions are used to find out the maximum & minimum valued elements of the given […]
Python: PyDoc - Python's Documentation System
Reading Time: 1 minutesPyDoc in Python PyDoc in Python PyDoc is a command line tool, just like perldoc in Perl. It is shipped with Python installation. It provides documentation on modules by enabling […]
65 Handy Third-Party Modules
Reading Time: 4 minutesHandy Third-Party Modules in Python Handy Third-Party Modules in Python Python has a huge collection of third-party modules, owing to its large community. Here's a list of most commonly used […]
53 Handy Standard Library Modules
Reading Time: 3 minutesHandy Standard Library Modules in Python Handy Standard Library Modules in Python Python comes with over 200 standard library modules. In the following list, I provide to you the most […]
Taking a screenshot on a Mac
Reading Time: 1 minutesTaking a screenshot on a Mac Taking a screenshot on a Mac Here's how to take a screenshot on a Mac: Press Command-Shift-4. Move the crosshair pointer to where you […]