5 строки
93 B
Python
5 строки
93 B
Python
fp = open('zapis3.txt', 'r')
|
|
lines = fp.readlines()
|
|
print("readlines():", lines)
|
|
fp.close()
|