“Python Menulis ke file saat membaca” Kode Jawaban

Python menulis untuk mengajukan

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() 
Misty Macaw

Python Menulis ke file saat membaca

# writin content of one file to the other
with open("source.txt", "r") as inFile, open("target.txt", "w") as outFile:
    for line in inFile:
        print(line.strip("\n"), file=outFile)
Experimental Hypothesis

Jawaban yang mirip dengan “Python Menulis ke file saat membaca”

Pertanyaan yang mirip dengan “Python Menulis ke file saat membaca”

Lebih banyak jawaban terkait untuk “Python Menulis ke file saat membaca” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya