Under a Unix-like operating system such as Linux, Python program files can be made directly executable using a shebang, also called a magic line. To do this, the first line of the program file must usually be as follows:
#!/usr/bin/python3
In this case, the operating system is instructed to...