我知道如何创建文件,但在这种情况下,它会覆盖所有数据:
import io
with open('text.txt', 'w', encoding='utf-8') as file:
file.write('text!')
在*nix
我可以做类似的事情:
#!/bin/sh
if [ -f text.txt ]
#If the file exists - append text
then echo 'text' >> text.txt;
#If the file doesn't exist - create it
else echo 'text' > text.txt;
fi;
答案 0 :(得分:16)
使用模式a
代替w
附加到文件:
with open('text.txt', 'a', encoding='utf-8') as file:
file.write('Spam and eggs!')
答案 1 :(得分:-2)
关于你的第一个问题,谷歌搜索会出现几种方式。试试这个早期的问题: