这是我在看《简明python教程》时的一些理解,书上的代码由于我用的是Python3.5.所以将代码改为如下:
import sys
def readfile(filename):
”’Print a file to the standard output.”’
f = open (filename)
while True:
line = f.readline()
if len(line) == 0:
break
print (line,) # notice comma
f.close()if len(sys.argv) < 2:
print (‘No action specified.’)
sys.exit()
if sys.argv[1].startswith('--'):
option = sys.argv[1][2:]
``` if option == 'version':
print(