What could the output of sys.argv look like if it was printed?
Here's a correct example of what the output of sys.argv might look like if it was printed:
import sys
print(sys.argv)
# Output: ['script.py', 'arg1', 'arg2', 'arg3']Tip: Mind that the output must be represented as a list of strings.