KarlG
0
Q:

read txt file py

f=open("Diabetes.txt",'r')
f.read()
12
#reading a txt file using a context manager
with open("my_file.txt","r") as text:
  print(text.readlines())			#prints a list of lines in the txt file
  print(text.readline())			#prints the first line of the txt file
  print(text.read(4))				#prints the first four characters of the txt file
3
lines = []
with open('the-zen-of-python.txt') as f:
    lines = f.readlines()

count = 0
for line in lines:
    count += 1
    print(f'line {count}: {line}')    
0

Tags

New to Communities?

Join the community