Answers for "python read value from file"

13

python read file to variable

with open('data.txt', 'r') as file:
    data = file.read().replace('\n', '')
Posted by: Guest on February-27-2020
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
0

python read values from file

file = open('test.txt')
for line in file:
    fields = line.strip().split()
    print fields[0], fields[1], fields[2], fields[3]
Posted by: Guest on May-02-2021

Python Answers by Framework

Browse Popular Code Answers by Language