无法使用python打开文件

时间:2017-10-12 14:22:57

标签: python python-2.7

我尝试使用此代码打开文件,但它一次又一次地显示错误:NameError:name" practice"没有定义 在哪里"练习"是我试图打开的文件的名称。 "的practice.txt" (我试图打开的文件)存在于创建我的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!!!")

1 个答案:

答案 0 :(得分:0)

这是因为您必须指定文件的PATH以及文件名。

即。打开(“Files / images / Image1.png”,“MODE”)