How to loop over two lists at the same time using indexes to print corresponding elements in Python

1 Answer

0 votes
lst = ["python", "java", "c#", "c++", "php"]
jobs = [10, 13, 7, 5, 21]

for i, item in enumerate(lst):
    job = jobs[i]
    print("{}: {}".format(item, job))


'''
run:
 
python: 10
java: 13
c#: 7
c++: 5
php: 21

'''

 



answered Dec 7, 2017 by avibootz
...