2 lines
86 B
Python
2 lines
86 B
Python
with open(r'day5/input.txt', 'r') as input:
|
|
lines = input.read().split('\n')[:-1]
|