我是 python 新手,在 python 中面临变量插值概念的问题我已经编写了一个检查参数的方法,但是在打印行时它给出了错误
import re
import sys
import os.path
def CheckArgument(argv) :
for arg in argv :
if (re.match('^-a$|^-b$|^-c$',argv) != 1) :
if os.path.isfile(arg) != 1 :
print ("file %s doesnot exists", % arg)
#above line is giving error
elif re.match('-help',arg) == 1 :
print "......."
CheckArgument(sys.argv)