Skip to content

Instantly share code, notes, and snippets.

@kodamirmo
Created July 9, 2013 17:17
Show Gist options
  • Save kodamirmo/5959250 to your computer and use it in GitHub Desktop.
Save kodamirmo/5959250 to your computer and use it in GitHub Desktop.
def fizz_count(lista):
contador=0;
for i in lista:
if i == "fizz":
contador=contador+1
return contador
lista = ["asda","fizz","dfs","fizz","fizz"]
print lista
contador = fizz_count(lista)
print contador
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment