ungleich-learning-circle/kjg/python-the-hard-way/e13.py

9 lines
263 B
Python
Raw Normal View History

2020-05-20 13:37:15 +00:00
from sys import argv
# read the WYSS section for how to run this
script, first, second, third = argv
print("The script is called:", script)
print("Your first variable is:", first)
print("Your second variable is:", second)
print("Your third variable is:", third)