Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
无论如何,python中有没有在不打开另一个文本文件的情况下将字符串写入目录中的文本文件?我知道你可以写一个这样的文本文件:
a='a' file1=open('sample.txt','a') file1=write(a) file1.close()
但我认为这种方法需要文本文件 sample.txt 已经存在于工作目录中。我想知道是否可以将“a”写入文件,而 sample.txt 不需要是预先存在的文件。
只需更换
file1=write(a)
和
file1.write(a)
完整代码:
a='a' file1=open('sample.txt','a') file1.write(a) file1.close()