Skip to content

Instantly share code, notes, and snippets.

@santosadrian
Created February 2, 2020 14:36
Show Gist options
  • Save santosadrian/c4c1dd0feaa9baaf78ba05a6bd1058f0 to your computer and use it in GitHub Desktop.
Save santosadrian/c4c1dd0feaa9baaf78ba05a6bd1058f0 to your computer and use it in GitHub Desktop.
Example 13
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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment