#!/usr/bin/env python3 # *************** Making s script executable ******************* # * Notice how we set the interpreter at the top of the file to python3 #! using -> #!/usr/bin/env python3 <- on all files # * Then write your code after: print("Running script...")