[Solved] How to call the minimum value in list 1 and respective value in list 2 in PYTHON [closed]
You can do it with min and zip quite easy: l1 = [1,2,3,4,5,6] l2 = [10,20,5,8,30,25] l3 = zip(l2,l1) print(min(l3)) Output: (5, 3) Comment As mention in the comment by @sshashank124 it is important that the first list is the list you want to find the minimum. In this case it would be l2 that … Read more