Prameters, Unpacking, variables

PHOTO EMBED

Mon Jun 08 2020 12:33:50 GMT+0000 (Coordinated Universal Time)

Saved by @Amna #python

from sys import argv
script, first, second = argv

print("The script is called:", script)
print("The first variable is:", first)
print("The second variable is:", second)
content_copyCOPY

import means this is how you add features to your script from the Python features set. The argv is the argument variable, a very standard name in programming that you will find used in many other languages.

https://www.amazon.com/Learn-Python-Hard-Way-Introduction/dp/0134692888/ref=pd_lpo_14_img_0/145-2038954-9524128?_encoding=UTF8&pd_rd_i=0134692888&pd_rd_r=ef9c42e9-dfb9-4aa7-bd28-d4ef80f17296&pd_rd_w=aAQyc&pd_rd_wg=p8R5U&pf_rd_p=7b36d496-f366-4631-94d3-61b87b52511b&pf_rd_r=Y77J2N1H3EECZQ618R8B&psc=1&refRID=Y77J2N1H3EECZQ618R8B