Untitled
unknown
python
2 years ago
248 B
6
Indexable
if __name__ == '__main__':
data = []
filepath = "data/dane.txt"
with open(filepath, "r", encoding="utf-8") as file:
for line in file:
data.append(line.strip().split())
for d in data:
print(d)
Editor is loading...
Leave a Comment