这个Python文件读取测试有什么问题?
import os
import sys
fileList = os.listdir(sys.argv[1])
count = 0
for file in fileList:
try:
count += 1
print os.path.isfile(file)
if os.path.isfile(file)
print "File >> " + file
else
print "Dir >> " + file
except err:
print "ERROR: " + err
print ">> in file: " + file
给出:
文件“test.py”,第10行 如果os.path.isfile(文件) ^ SyntaxError:语法无效
为什么?
答案 0 :(得分:3)
在if和else行上缺少冒号
if (something): #note the : at the end
...
else:
...