I'm asked to create a method that returns the number of occurrences of a given item in a list. I know how to write code to find a specific item, but how can I code it to where it counts the number of occurrences of a random item.
For example if I have a list [4, 6 4, 3, 6, 4, 9] and I type something like
s1.count(4), it should return 3 or s1.count(6) should return 2.
I'm not allowed to use and built-in functions though.
In a recent assignment, I was asked to count the number of occurrences that sub string "ou" appeared in a given string, and I coded it
if len(astr) < 2:
return 0
else:
return (astr[:2] == "ou")+ count_pattern(astr[1:])
Would something like this work??
def count(self, item):
num=0
for i in self.s_list:
if i in self.s_list:
num[i] +=1
def __str__(self):
return str(self.s_list)
numis a number, sonum[i]will not work. Also there is no sense in iterating over the list (for i in self.s_list) and the test whether the element is in the list (if i in self.s_list). This will always be the case. The approach (looping andnum[i] +=1) is good though, if you correct it and use the right data type. – Felix Kling Nov 9 '11 at 1:10if. Hint: Ifitemis4, what would you want to check? – phihag Nov 9 '11 at 1:26