Files
advent_of_code/2023/day_4/part 1 solution.py
T
2023-12-04 11:12:25 +00:00

7 lines
118 B
Python

import os
with open(r'advent_of_code\2023\day_4\input.txt', 'r') as file:
input = file.readlines()
print(input)