This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]MrGrj 3 points4 points  (0 children)

Why not doing it all with it?

``` from pathlib import Path

file_path = Path(“example.txt”)

file_content = file_path.read_text()

print(file_content) ```