Show current path
pwd
List files in current directory
ls .
Go to folder using absolute path
cd /pi/user
Go to folder using relative path
cd ../docker
Create a folder
mkdir hello_world
Create a file in current folder
touch file.py
Create a file using absolute path
touch /pi/user/hello_world/main.py
Delete a file
rm file.py
Write the following in your main.py
print('Hello World!')
Go to the location of the file and run it
python3 main.py
Upload your file to GitHub
git init
git add main.py
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/USER/hello_world.git
git push -u origin master
Rembember to change "USER" to your username