a266181
1
2
3
4
5
6
7
8
9
10
11
12
def j_reads(file): with open(file, "r") as f: contents = f.readlines() return contents def j_read(file): with open(file, "r") as f: content = f.readline() return content