how to iterate list in python code example

Example 1: python loop through list

list = [1, 3, 6, 9, 12] 
   
for i in list: 
    print(i)

Example 2: python for loop with array

foo = ['foo', 'bar']
for i in foo:
  print(i) #outputs 'foo' then 'bar'
for i in range(len(foo)):
  print(foo[i]) #outputs 'foo' then 'bar'
i = 0
while i < len(foo):
  print(foo[i]) #outputs 'foo' then 'bar'

Example 3: how to loop through list in python

thisList = [1, 2, 3, 4, 5, 6]

x = 0
while(x < len(thisList)):
    print(thisList[x])
    x += 1
    
# or you can do this:

for x in range(0, len(thisList)):
    print(thisList[x])
    
#or you can do this

for x in thisList:
    print(x)

Example 4: iterate over a list python

# Python3 code to iterate over a list
list = [1, 3, 5, 7, 9]
  
# Using for loop
for i in list:
    print(i)

Example 5: how to iterate over a list in python

lst = [10, 50, 75, 83, 98, 84, 32] 
 
res = list(map(lambda x:x, lst))
 
print(res)

Example 6: how to iterate list in java selenium

public Boolean selectByText( String text ) {
    WebElement dropDown = driver.findElement( By.xpath( ".//dropdown/path" ) );
    dropDown.click();
    List<WebElement> allOptions = dropDown.findElements(By.xpath(".//option"));
    for ( WebElement we: allOptions) { 
        dropDown.sendKeys( Keys.DOWN ); //simulate visual movement
        sleep(250);       
        if ( we.getText().contains( text ) ) select.selectByVisibleText("Value1");
    }
}

Tags:

Cpp Example