Answers for "python opening file with a still clearing"

10

python delete contents of file

f = open('file.txt', 'r+')
f.truncate(0)
Posted by: Guest on February-22-2020
3

python delete contents of file

open('file.txt', 'w').close()
Posted by: Guest on February-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language