Every command-line tool included with Python. These can be run with python -m module_name.| www.pythonmorsels.com
Python has a colon (:) after all statements that start a new block: if, for, while, def, class, with, else. For example: if a == 1: b = 2 However, the colon looks redundant. Both a machine and a human can understand that a new block started by indentation, and you can’t miss that block anyway. For the example above it could look like this: if a == 1 # SyntaxError b = 2 So, why do we need it?| blog.orsinium.dev
This module provides various time-related functions. For related functionality, see also the datetime and calendar modules. Although this module is always available, not all functions are available...| Python documentation