📜  编写一个 Python 程序将文本附加到文件并显示文本. - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:44.895000             🧑  作者: Mango

代码示例1
def Appendtext(fname):
    with open(fname,'a+') as f:
        f.write('appending line 1, ')
        f.write('appending line 2. ')
    f.close()
# y=open('file1.txt')
# print(y.read())
Appendtext('file1.txt')

x= open('file1.txt')
print(x.read())