In video number 9 of the Coding in Python series, finally start writing actual scripts instead of using only the Python shell.
Open an editor to create a Python file (Linux shell command)
nano sample_script.py
Simple Python script
#!/usr/bin/env python3
print("Python is awesome!")
Make a script executable (Linux command)
chmod +x sample_script.py
Execute a Python script (Linux command)
./sample_script.py