Skip to content

Chapter 1

Jarlin Almanzar edited this page Oct 22, 2019 · 9 revisions

Windows Commands

cd to change directory

cd .. to back to previous folder/parent

cd folder_name to go to folder

mkdir folder_name make a folder with the given name

dir gets the files/folders in current or specified directory

Running Python Python

python program_name.py

Hello World

print("Hello Python World")

Troubleshooting

When a program contains a significant error, Python displays a traceback, which is an error report

Clone this wiki locally