Answers for "two elements in for loop python"

2

python for loop 2 items at a time

# ------------- For loop using 2 items of a list --------------- #

# This code is trying to find if a point belongs between
# the interval of pairing points of a list:

mylist = [117, 202, 287, 372, 457, 542]
point = 490
# 117 < x < 202  ? 
# 287 < x < 372  ?
# 457 < x < 542  ?

for i, j in zip(mylist[::2], mylist[1::2]):
  if i < point < j:
    print ("This point exists between: ", i, " - ", j)
    break
Posted by: Guest on August-28-2020
-2

how to select number by twos in a list python next to each

A = [1, 2, 3, 4, 5]
for i in range(len(A) - 1):
    value = A[i:i+2]
Posted by: Guest on August-05-2020

Code answers related to "two elements in for loop python"

Python Answers by Framework

Browse Popular Code Answers by Language