ungleich-learning-circle/youngjin.han/python-the-hard-way/ex13.py

10 lines
313 B
Python

from sys import argv
# read the WYSS section for how to run this
script, first, second, third, fourth = 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)
print("Your fourth variable is:", fourth)