📜  在python代码示例中清除文件中的所有文本

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

代码示例1
fileVariable = open('textDocName.txt', 'r+')
fileVariable.truncate(0)
fileVariable.close()