Answers for "list loop"

54

python loop through list

list = [1, 3, 6, 9, 12] 
   
for i in list: 
    print(i)
Posted by: Guest on June-25-2019
5

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)
Posted by: Guest on April-11-2020
0

list iteration

def count_v1(dna, base):
    dna = list(dna)  # convert string to list of letters
    i = 0            # counter
    for c in dna:
        if c == base:
            i += 1
    return i
Posted by: Guest on May-01-2021
0

list iteration

>>> list('ATGC')
['A', 'T', 'G', 'C']
Posted by: Guest on May-01-2021
0

python iterate list

for var_name in input_list_name:
Posted by: Guest on August-27-2020

Python Answers by Framework

Browse Popular Code Answers by Language