Developer productivity
- Python is so easy to learn
- Write code really fast
Good for
- Machine learning
- Webserver
- Data visualizations
What tool to use for a specific problem?
- Create python file
touch hello.py
2. Input python command
print("hello world")
3. Execute python
python hello.py
# hello world
how python gets written as source code?
use the interpreter
to run the code and then spit out some instruction for our machines.