read.py 88 B

1234
  1. def read(file_path):
  2. with open(file_path, 'r') as file:
  3. return file.read()