Holen Sie sich das nächste Element beim Looping

arr = [1,2,3,4]
arr = iter(arr)

for x in arr:
  print(x, next(arr))
CodeHunter