python-crash-course/Chapter_10/10-01_learning_python.py
2025-03-03 18:11:26 +00:00

16 lines
280 B
Python

# Exercise 10-1 Learning Python
# Learning Objective: Read from a text file
from pathlib import Path
path = Path('Chapter_10/learning_python.txt')
contents = path.read_text()
print(contents)
#lines = contents.splitlines()
for line in contents.splitlines():
print(line)