Posts: 2
Threads: 1
Joined: Jun 2018
Jun-22-2018, 06:57 AM
(This post was last modified: Jun-22-2018, 06:57 AM by DRPR.)
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]. Here is what I did:
def simi(a,b):
a,b,c=[],[],[]
for i in a:
for j in b:
if i==j:
c.append(i)
else:
continue
return (c) [python]
Posts: 8,151
Threads: 160
Joined: Sep 2016
Jun-22-2018, 07:09 AM
(This post was last modified: Jun-22-2018, 07:15 AM by buran.)
check your line#2
Do you really want to overwrite the user supplied arguments a and b with empty lists? :-)
Note that your code is not pythonic and there are better ways to do the same, without using nested loops. check using set
Posts: 566
Threads: 10
Joined: Apr 2017
(Jun-22-2018, 06:57 AM)DRPR Wrote: 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]. Here is what I did:
def simi(a,b):
a,b,c=[],[],[]
for i in a:
for j in b:
if i==j:
c.append(i)
else:
continue
return (c)
So this is how your function should look like
def similar_elements(list1, list2):
similars = []
for elem in list1:
if elem in list2:
similars.append(elem)
return similars 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!
Test everything in a Python shell (iPython, Azure Notebook, etc.) - Someone gave you an advice you liked? Test it - maybe the advice was actually bad.
- Someone gave you an advice you think is bad? Test it before arguing - maybe it was good.
- You posted a claim that something you did not test works? Be prepared to eat your hat.
Posts: 2
Threads: 1
Joined: Jun 2018
(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?
Posts: 566
Threads: 10
Joined: Apr 2017
Jun-22-2018, 10:05 AM
(This post was last modified: Jun-22-2018, 10:06 AM by volcano63.)
(Jun-22-2018, 09:55 AM)DRPR Wrote: 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?
I probably should not have shown it  (if I hadn't, someone had probably "corrected" me  ). I have committed a sin I often berate others for - showing an advanced technique to a newbie without a disclaimer.
This is the proper code
def simi1(list1,list2):
return [elem for elem in list1 if elem in list2] or - by set , as buran suggested
def simi1(list1,list2):
return set(list1).intersection(list2) The problem with those 2 solutions for you - jumping stages. Mastering loops is a step to mastering list comprehension.
Test everything in a Python shell (iPython, Azure Notebook, etc.) - Someone gave you an advice you liked? Test it - maybe the advice was actually bad.
- Someone gave you an advice you think is bad? Test it before arguing - maybe it was good.
- You posted a claim that something you did not test works? Be prepared to eat your hat.
|