所以我很困惑为什么这个简单的记事本文件common.txt无法打开。我想知道记事本是否可以在python中使用。
所以我想说文件是否存在:
import os.path
import sys
def file_exist(common):
#test whether the file exists and open it to a data structure
if os.path.isfile(common):
return common
else:
return
def main():
common = input("enter: ")
print(file_exist(common))
if __name__ == "__main__":
main()
我对一个csv文件做了同样的代码,它似乎可以工作。
输出为:
enter: common.txt
None
答案 0 :(得分:3)
这段代码对我来说很好。
我将其保存为common.py,然后从common.py所在目录的命令行中运行它。
这里是会议:
C:\temp\so> python common.py
enter: common.py
common.py
代码执行以下操作: -请求输入 -如果输入是工作目录中的文件名,则会打印出文件名。 -如果输入的不是工作目录中的文件名,则输出None。
您还想让此代码执行其他操作吗?