mirror of
https://github.com/NohamR/Stage-2023.git
synced 2025-05-24 14:21:58 +00:00
11 lines
175 B
Python
11 lines
175 B
Python
f = open("track/points.txt")
|
|
l = f.readlines().replace('\n', '')
|
|
a = []
|
|
b = []
|
|
for i in (0, len(l)-1):
|
|
if i/2 == 0:
|
|
b+=[l[i]]
|
|
else:
|
|
a+=[l[i]]
|
|
|
|
print(l) |