10 lines
158 B
Python
10 lines
158 B
Python
|
|
|
|
|
|
|
|
def readfile(filepath):
|
|
with open(filepath, "r") as file:
|
|
lines = file.readlines()
|
|
for line in lines:
|
|
print(line.strip())
|