first_list = [1, 2, 3] second_list = [10, 20, 30]
for i, j in zip(first_list, second_list): print(i, j)
1 10
2 20
3 30
Python Mega Course: Learn Python in 60 Days, Build 20 Apps
Learn Python on Udemy completely in 60 days or less by building 20 real-world applications from web development to data science.