Best optimal algorithm to compare zip tuples
Hello everyone, The problem is I want to compare 2 tuples : considering name1,name2,amount1,amount2,status1, status2, to be lists (Note that i have to use zips because a specific amount is linked to a name so you can't just compare one list and another list you have to compare either one list and use the index number to check the 2 other lists) or you may use several loops to check the comparaison. project1=zip(name1,amount1,status1) project2=zip(name2,amount2,status2) how would i make a program to check everypossibility? if names,amount,status are correct return "OK" , if something is missing i have to say in which projet and what is missing ? I'm working with python Thank you for your help guys If you want to see my program you can DM me i will send it to you. but with all these info you should be able to help me anyways. If can't help me please consider giving a thumbs up so others can see my post.