Relink programs to text files

This commit is contained in:
2020-06-22 11:24:36 +02:00
parent 2da8957aac
commit 7201fa6e8b
6 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
import csv
import math
with open('42.txt') as file:
with open('./../42.txt') as file:
reader = csv.reader(file, delimiter=",", quotechar='"')
words = list(reader)[0]