此问题在此处已有答案:
What exactly is current working directory?(5个答案)
2天前关闭。
我在PyCharm中编写了要求用户输入的代码,并尝试在名为 * data.txt * 的文件中读取和写入它,但得到了以下错误:
未找到文件错误:[Errno 2]没有这样的文件或目录:'数据. txt'
user_entry=input("Throw the coin and enter a Heads or Tails : ")
user_entry=user_entry.capitalize()
with open('data.txt', 'r') as file:
existing_data=file.read()
existing_data=existing_data+'\n'+user_entry
with open('data.txt', 'w') as file:
file.write(existing_data)
2条答案
按热度按时间qq24tv8q1#
如果您'data.txt'文件在其他文件夹中,请尝试添加
否则,请尝试将“data.txt”文件与python文件保存在同一个文件夹中。
cwtwac6a2#
您可以删除data.txt文件并创建一个新文件,也可以将其放在python脚本所在的目录中。