📜  python make txt 文件 - Python 代码示例

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

代码示例1
file = open("text.txt", "w") 
file.write("Your text goes here") 
file.close() 
'r' open for reading (default)
'w' open for writing, truncating the file first
'x' open for exclusive creation, failing if the file already exists
'a' open for writing, appending to the end of the file if it exists