- 8
- Since we are using the sys module, we should import it first.
So the correct code should look like this:
#!/usr/bin/python3
import sys
print( len(sys.argv))
- 2
So the correct code should look like this:
#!/usr/bin/python3
import sys
print( len(sys.argv))