Files
fission-src/examples/python/multifile/readfile.py
T
2017-11-09 08:11:02 -08:00

4 lines
70 B
Python

def readFile(name):
with open(name) as f:
return f.read()