Skip to content

Instantly share code, notes, and snippets.

@akreer135
Created September 25, 2013 23:49
Show Gist options
  • Save akreer135/6707852 to your computer and use it in GitHub Desktop.
Save akreer135/6707852 to your computer and use it in GitHub Desktop.
argv and variables
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment