Skip to content

Instantly share code, notes, and snippets.

@utinajerolps
Created September 11, 2014 20:55
Show Gist options
  • Save utinajerolps/b388efc96e5b43cb1817 to your computer and use it in GitHub Desktop.
Save utinajerolps/b388efc96e5b43cb1817 to your computer and use it in GitHub Desktop.
def count(sequence,item):
total = 0
for i in sequence:
if i == item:
total += 1
return total
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment