Chapter 8
Python
Python is a general-purpose interpreted, interactive, object-oriented, and high-level programming language.
print('Hello, world!')
name = input('What is your name?' )
print('It is good to meet you, ' + name)
Purposes
- web programming (server-side)
- system scripting
- scientific computing
- artificial intelligenc
Resources
- Official Python 3 Documentation - official/technical explanation of function, syntax, libraries, etc.
- PEP 8 - Style guide for Python
- Learn Python in Y minutes
- Automate the Boring Stuff with Python
- Python Like You Mean It