python 清空csv、txt...文件全部数据

remove = open('1.txt', "r+")  # 或者'**.csv'
remove.truncate()

你可能感兴趣的:(python)