June 2017
Beginner
320 pages
7h 37m
English
In this exercise we will cover one more input method you can use to pass variables to a script (script being another name for your .py files). You know how you type python3.6 ex13.py to run the ex13.py file? Well the ex13.py part of the command is called an argument. What we’ll do now is write a script that also accepts arguments.
Type this program and I’ll explain it in detail:
ex13.py
1 from sys import argv 2 # read the WYSS section for how to run this 3 script, first, second, third = argv 4 5 print("The script is called:", script) 6 print("Your first variable is:", first) 7 print("Your second variable is:", second) 8 print("Your third variable ...
Read now
Unlock full access