summaryrefslogtreecommitdiff
path: root/progs/a788.py
blob: 7e95056d0f1bf1d90f02c99c6b2a3a56ddaedc80 (plain)
1
2
3
4
5
6
def count_element_in_list(list1, x): 
    ctr = 0
    for i in range(len(list1)): 
        if x in list1[i]: 
            ctr+= 1          
    return ctr