Python Forum
Comparing values in separate lists
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Comparing values in separate lists
#2
I would suggest to use the zip function in combination with a for loop if you want to compare the first elements, then the second elements, etc.
so instead of you two for loops use:
list_1 = [12.4, 2.7, 5.1]
list_2 = [10.9, 2.3, 3.7]
for element_1, element_2 in zip(list_1, list_2):
       if element_1>=5 and element_2>=5:
            a.extend((element_1,element_2))
        elif element_1<5 and element_2>=5:
            b.extend((element_1,element_2))
        elif element_1>=5 and element_2<5:
            c.extend((element_1,element_2))
        elif element_1<5 and element_2<5:
            d.extend((element_1,element_2))
print(a, b, c, d)
Reply


Messages In This Thread
RE: Comparing values in separate lists - by ThiefOfTime - May-02-2018, 03:48 PM
RE: Comparing values in separate lists - by woooee - May-02-2018, 04:25 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
Question Using Lists as Dictionary Values bfallert 8 408 Apr-21-2024, 06:55 AM
Last Post: Pedroski55
  Comparing List values to get indexes Edward_ 7 1,237 Jun-09-2023, 04:57 PM
Last Post: deanhystad
  How to separate the values in an element to add them monty024 4 1,057 Jan-23-2023, 04:28 AM
Last Post: deanhystad
  user input values into list of lists tauros73 3 1,103 Dec-29-2022, 05:54 PM
Last Post: deanhystad
  importing functions from a separate python file in a separate directory Scordomaniac 3 1,407 May-17-2022, 07:49 AM
Last Post: Pedroski55
  comparing 2 lists rwahdan 2 1,658 Jul-18-2021, 06:30 PM
Last Post: DeaD_EyE
  Split dict of lists into smaller dicts of lists. pcs3rd 3 2,443 Sep-19-2020, 09:12 AM
Last Post: ibreeden
  Comparing items from 2 lists of dictionaries illwill 7 2,831 Sep-14-2020, 10:46 PM
Last Post: bowlofred
  Comparing Values/QC Within Two Strings uttadms31 2 1,932 Jul-07-2020, 03:49 PM
Last Post: uttadms31
  Inserting values from multiple lists sqlite azulu 1 2,525 May-24-2020, 08:40 AM
Last Post: ibreeden

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020