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