Commit 5cb06118 by Sergey.Kolodchenko

Upload New File

parent a28c8c29
Showing with 16 additions and 0 deletions
# dictionary
# Opens fife with read
#f variable constain file
f = open("andmed.txt","r")
#reads and prints
print(f.read)
print(f.readline())
for line in f:
print(line)
f.close()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment