mirror of
https://github.com/aladdinpersson/Machine-Learning-Collection.git
synced 2026-02-21 19:27:58 +00:00
5 lines
52 B
Python
5 lines
52 B
Python
it = iter(l)
|
|
|
|
for el in it:
|
|
print(el, next(it))
|