summaryrefslogtreecommitdiff
path: root/progs/a616.py
blob: 0db94705c401578e0803817abe32ea1964f0233f (plain)
1
2
3
4
5
6
def count_integer(list1):
    ctr = 0
    for i in list1:
        if isinstance(i, int):
            ctr = ctr + 1
    return ctr