Answers for "writing to a file python"

73

python write to file

file = open(“testfile.txt”,”w”) 
 
file.write(“Hello World”) 
file.write(“This is our new text file”) 
file.write(“and this is another line.”) 
file.write(“Why? Because we can.”) 
 
file.close() 
Posted by: Guest on December-09-2019
2

python write to file

# using 'with' block

with open("xyz.txt", "w") as file: # xyz.txt is filename, w means write format
  file.write("xyz") # write text xyz in the file
  
# maunal opening and closing

f= open("xyz.txt", "w")
f.write("hello")
f.close()

# Hope you had a nice little IO lesson
Posted by: Guest on November-02-2020
0

read and write file in python

#Write a Python program to create a file of numbers by taking input from the user and then display the content of the file. You can take input of non-zero numbers, with an appropriate prompt, from the user until the user enters a zero to create the file assuming that the numbers are non-zero.  
    f = open ('NumFile.txt','w')
    while True :
        no = int(input("enter a number (0 for exit)"))
        if no == 0 :
            print("you entered zero(0) ....... n now you are exit  !!!!!!!!!!!")
            break
        else :
            f.write(str(no)+"n")
    f.close() 
    f1 = open ('NumFile.txt','r')
    print("ncontent of file :: n",f1.read())
    f1.close()
Posted by: Guest on April-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language