Chapter 14
- 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
sys
module, we should import it first.So the correct code should look like this:
#!/usr/bin/python3 import sys print( len(sys.argv))