Chapter 14

  1. 8
  2. 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))
  1. 2