7 lines
134 B
Python
7 lines
134 B
Python
from pathlib import Path
|
|
|
|
path = Path('pi_digits.txt')
|
|
contents = path.read_text()
|
|
|
|
for line in contents.splitlines():
|
|
print(line) |