Showing posts with label print. Show all posts
Showing posts with label print. Show all posts

Jun 25, 2021

Python3 write to file using Print

New version

with open(f'output.csv', 'w') as f:

      print(data, file=f)


Old version

with open(f'output.csv', 'w') as f:

      f.write(data)