我試圖打開一個使用此代碼的文件,但它又一次顯示錯誤:NameError:name「practice」未定義 其中「practice」是我試圖打開的文件。 「practice.txt」(即時試圖打開的文件)存在於創建我的python程序的同一目錄中。無法使用python打開文件
import os
name = input("Enter the name of the file : ")
if(os.path.exist(name)==True):
fopen = open(name,'w')
line = fopen.readline()
while(line != ""):
print(line)
line=fopen.readline()
fopen.close()
else:
print("file does not exist!!!")
是Python 2? – mentalita
根據你的錯誤信息,你應該使用'raw_input' – Wondercricket
python 2:'input'應該是'raw_input' –