I am looking to be able to write an alternative code to the built in count in python: This code works
def count(element,seq):
"""Counts how often an element occurs
...in a sequence"""
mycount = seq.count(element)
return mycount
but I would like to write it in a for loop (or another way?), I've got this far:
def count(element,seq):
"""Counts how often an element occurs
...in a sequence"""
for i in seq:
if element == seq:
print i
I'm not sure how to return the re-occuring elements as an integer. Any help appreciated!!