File size: 100 Bytes
6855b1e
 
 
 
 
1
2
3
4
5
def read_file(path):
    txt = open(path, "r")
    file = txt.read()
    txt.close()
    return file