Answers for "how to write output in a text file in python"

1

print in text file python

price = 33.3
with open("Output.txt", "w") as text_file:
    text_file.write("Purchase Amount: %s price %f" % (TotalAmount, price))
Posted by: Guest on May-15-2020
0

how to write to an output file in pytion

#first arg is the name of the file
#second arg notes that the file is open to write to it
outputFile = open("fileName", "w")
#next line writes to the file
outputFile.write(str)
#remember to close opened files
outputFile.close()
Posted by: Guest on December-31-2020
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 "how to write output in a text file in python"

Python Answers by Framework

Browse Popular Code Answers by Language