fileread.py 86 B

1234
  1. def fileload(filename):
  2. with open(filename) as f:
  3. return f.read().strip()