file = open("output.txt", "w")
file.write("hello")
file.close()
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
file = open("output.txt", "w")
file.write("hello")
file.close()