Answers for "python print to file vs write to file"

19

python write to file

with open(filename,"w") as f:
  f.write('Hello World')
Posted by: Guest on March-30-2020
7

python file reading

fin = open("NAME.txt", 'r')
body = fin.read().split("n")
line = fin.readline().strip()
Posted by: Guest on May-06-2020

Python Answers by Framework

Browse Popular Code Answers by Language