Python
How to use the Python interpreter
- Python interpreter is usually installed as /usr/local/bin/python3.6 - putting /usr/local/bin in your Unix shell's search path makes it possible to start it by typing the command: python3.6 - to exit: Ctrl-D - A second way of starting the interpreter is python -c command [arg] ..., which executes the statement(s) in command, analogous to the shell's -c option.
Who created Python
Python was conceived in the late 1980s, and its implementation began in December 1989 by Guido van Rossum
What is the Zen of Python
collection of 20 software principles that influences the design of Python Programming Language,[1] — only 19 of which were written down — around June 1999 by Tim Peters. >>> import this