pacman -S python && pacman -S nano //installs python & way to edit
touch helloWorld.py //make python script file
nano helloWorld.py //open it in text editor
print("Hello World!") //actual Hello World python code
Ctrl^x //exit the text editor
y //say yes to saving the file
enter //enter the option of saying yes
python helloWorld.py //execute written python script
pacman -S python && pacman -S nano //installs python & way to edit touch helloWorld.py //make python script file nano helloWorld.py //open it in text editor print("Hello World!") //actual Hello World python code Ctrl^x //exit the text editor y //say yes to saving the file enter //enter the option of saying yes python helloWorld.py //execute written python script