Skip to content

Latest commit

 

History

History
 
 

README.md

Python 101

Navigating the terminal

cd / will bring you to the root directory. This is where the Python environment lives.

cd will bring you to the home directory. This is where files and applications live.

ls will show you files wherever you are.

Use tab completion liberally.

ipython will open a pyton session.

In ipyton you can type run (script name).py to run a script