Define function to intersect Strings and lists : List Intersect : List PYTHON examples


PYTHON examples » List » List Intersect »

 

Define function to intersect Strings and lists


Define function to intersect Strings and lists


def intersect(seq1, seq2):
    res = []                     # start empty
    for x in seq1:               # scan seq1
        if x in seq2:            # common item?
            res.append(x)        # add to end
    return res

s1 = "SPAM"
s2 = "SCAM"

print intersect(s1, s2)                   # strings

s1 = [1,2,3,4,5]
s2 = [3,4,5,6,7]


print intersect(s1, s2)                   # list
           
       



    Related Scripts with Example Source Code in same category :

Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo List
» List Intersect