Novice here. I'm extremely new to python programming and I don't have any coding experience. I'm doing this for one of my college requirements. As the title shows, I need help passing two string arguments to my python code. This is what I have so far:
import sys 
print("--------------------")
print("Initials:   OC")
print("Nickname:   Waldo ")
print("--------------------")
print("Initials:", sys.argv[2])
python3 
main.py arg1 arg2
This is what it's asking me to do: Question
Thank you for your help!
 
    