Untitled
unknown
python
a year ago
248 B
3
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