My Quest to Learn Python: Exercise 0
Follow me along my journey as I attempt Zed A. Shaw’s Learn Python the Hard Way. I’ll be blogging each exercise here to help me retain what I’ve learned. Here it goes…
Exercise 0 complete!
Tools used: Terminal and gedit text editor
What I learned:
- To make a directory (fancy word for folder), type the following: “mkdir” “[name of the directory you want to create]”
- To change directories, type the following: “cd” “[name of directory you want to be in]”
- To list all the files within a directory, type the following: “ls”
Visual:
terminal example
