I am using notepad++ and run my python programs in the python shell .
I am working on unpacking the variables but when I call the program e.g in python shell import ex7.py
it asks me to use more then 1 value to unpack
When I use import ex7.py first sec third
it raises an invalid syntax exception.
Here is the program, I'm not just getting an idea of what to do with this:
from sys import argv
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