Answers for ". write a program to read the data from file “input.txt” and write into the file “output.txt”."

0

write the output of a function in a txt file

def out_fun():
  return "Hello World" 
output = out_fun() 
file = open("sample.txt","w") 
ile.write(output) file.close() 
#Copy and paste...will work. 
Posted by: Guest on August-04-2021

Code answers related to ". write a program to read the data from file “input.txt” and write into the file “output.txt”."

Python Answers by Framework

Browse Popular Code Answers by Language