Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Plain Text by Ozy ( 13 years ago )
def fizzCount():
list = ["izz", "fizz", "dizz", "fizz"]
count = 0
for x in list:
if x == "fizz":
return count + 1
else:
return False
fizzCount()
Revise this Paste