共计 288 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以使用 open()
函数以追加模式打开文件,并使用 write()
函数写入数据。下面是一个示例代码:
# 以追加模式打开文件
file = open("data.txt", "a")
# 写入数据
file.write("Hello, World!\n")
file.write("This is a new line.\n")
# 关闭文件
file.close()
在上面的示例中,open()
函数的第一个参数是文件名,第二个参数是模式。"a"
表示以追加模式打开文件。然后,可以使用 write()
函数写入数据到文件中。最后,记得调用 close()
函数关闭文件。
丸趣 TV 网 – 提供最优质的资源集合!
正文完