我在寫一個小腳本,如果文件存在或不存在,它將打印。爲什麼Python說文件不存在?
但它總是說文件不存在,即使該文件實際存在。
代碼:
file = exists(macinput+".py")
print file
if file == "True":
print macinput+" command not found"
elif file == "True":
print os.getcwd()
os.system("python "+macinput+".py")
print file
你可能要考慮再看看'if' /'elif'語句。以「file」作爲變量名的 –
不是一個好主意。如果你想在命名空間稍後打開一個文件,你會遇到問題。 – rocksportrocker