cs50/src6/2/greet2.py

7 lines
89 B
Python

# Printing command-line arguments
from sys import argv
for arg in argv:
print(arg)