How I read Files in Python

When I need to read contents from a plain text file in python I find the easiest way is to just use .

When I need to read contents from a plain text file in python I find the easiest way is to just use Pathlib.

from pathlib import Path

Path('path_to_file').read_text()

Connections

Related tags and posts connected to this entry.