Python Forum
finding similar objects in a list
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
finding similar objects in a list
#4
(Jun-22-2018, 07:29 AM)volcano63 Wrote: [quote='DRPR' pid='50443' dateline='1529650625'] I am new to python and programming in general.I wanted to write a code which prints the similar elements from 2 lists .For example if a=[1,2,3,4,5] and b=[0,2,4,6] , I would want a c=[2,4]. Of course, experienced Pythonista would write it at least as
[elem for elem in list1 if elem in list2]
and there are couple of other ways to write it - but that will come in the future. Good luck with your studies!

I did the method for the experienced pythonista! but it returned a an error:
def simi1(list1,list2):
    c=[]
    [elem for elem in list1 if elem in list2]
    c.append(elem)
    return(c)
Error:
NameError: name 'elem' is not defined
Any tips?
Reply


Messages In This Thread
finding similar objects in a list - by DRPR - Jun-22-2018, 06:57 AM
RE: finding similar objects in a list - by buran - Jun-22-2018, 07:09 AM
RE: finding similar objects in a list - by DRPR - Jun-22-2018, 09:55 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Error is finding mean of a list PythonBoy 4 951 Sep-11-2023, 02:38 PM
Last Post: PythonBoy
  Finding combinations of list of items (30 or so) LynnS 1 897 Jan-25-2023, 02:57 PM
Last Post: deanhystad
  Creating list of lists, with objects from lists sgrinderud 7 1,723 Oct-01-2022, 07:15 PM
Last Post: Skaperen
Question Keyword to build list from list of objects? pfdjhfuys 3 1,617 Aug-06-2022, 11:39 PM
Last Post: Pedroski55
Question Finding string in list item jesse68 8 1,931 Jun-30-2022, 08:27 AM
Last Post: Gribouillis
  How to store the resulting Doc objects into a list named A xinyulon 1 1,922 Mar-08-2022, 11:49 PM
Last Post: bowlofred
  Grouping and sum of a list of objects Otbredbaron 1 3,262 Oct-23-2021, 01:42 PM
Last Post: Gribouillis
  Sum similar items tester_V 3 2,009 Jun-29-2021, 06:58 AM
Last Post: tester_V
  Passing List of Objects in Command Line Python usman 7 3,247 Sep-27-2020, 03:45 PM
Last Post: ndc85430
  How to create and define in one line a 2D list of class objects in Python T2ioTD 1 2,073 Aug-14-2020, 12:37 PM
Last Post: Yoriz

Forum Jump:

User Panel Messages

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