Answers for "python read values from file"

30

python make txt file

file = open("text.txt", "w") 
file.write("Your text goes here") 
file.close() 
'r' open for reading (default)
'w' open for writing, truncating the file first
'x' open for exclusive creation, failing if the file already exists
'a' open for writing, appending to the end of the file if it exists
Posted by: Guest on April-04-2020
18

open text file in python

f=open("Diabetes.txt",'r')
f.read()
Posted by: Guest on April-25-2020
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

Code answers related to "python read values from file"

Python Answers by Framework

Browse Popular Code Answers by Language