of     1   

Funification
#182289393Sunday, January 24, 2016 5:39 AM GMT

________________________ count = 0 def fizz_count(x): for b in x: if b == 'fizz': count + 1 return count ________________________ It's supposed to return the amount of times "fizz" was in: fizz_count[('fizz','cat','fizz')] But for some reason it outputs 0 Funification | Was dominusawesomus | you wil cryying when obama take yur computr |Yee | ParanoidHumanoid is my trading account
FroggoBLOX
#182289605Sunday, January 24, 2016 5:43 AM GMT

"fizz_count[('fizz','cat','fizz')] " nah fam you gotta do fizz_count([#stuff]) you can't call the function in list format Hello, I'm Chandler. I make jokes when I'm uncomfortable.
Funification
#182289715Sunday, January 24, 2016 5:45 AM GMT

@frog yeah that's how it was written i don't write that part, thats just what codecademy used to check my work Funification | Was dominusawesomus | you wil cryying when obama take yur computr |Yee | ParanoidHumanoid is my trading account
UnsourcedAnon
#182289737Sunday, January 24, 2016 5:45 AM GMT

I am rather curious, are you asking this question here so you can avoid receiving criticism on the Scripters sub-section?
FroggoBLOX
#182289781Sunday, January 24, 2016 5:46 AM GMT

weird but I think i found the real problem instead of just putting count + 1 put count += 1 count + 1 doesn't put the modified value back into the variable Hello, I'm Chandler. I make jokes when I'm uncomfortable.
Slydexia
#182289799Sunday, January 24, 2016 5:47 AM GMT

"are you asking this question here so you can avoid receiving criticism on the Scripters sub-section" can ya really blame him if he was?
Funification
#182289943Sunday, January 24, 2016 5:50 AM GMT

'I am rather curious, are you asking this question here so you can avoid receiving criticism on the Scripters sub-section?' no it's because I'm an OTer and I'm slightly known (or my older accounts were) so I may be more likely to get help but kinda when i go there i am afraid someone who knows like x100 what i do will be mean just like in real life Funification | Was dominusawesomus | you wil cryying when obama take yur computr |Yee | ParanoidHumanoid is my trading account
UnsourcedAnon
#182290114Sunday, January 24, 2016 5:53 AM GMT

"when i go there i am afraid someone who knows like x100 what i do will be mean just like in real life" Ah, alright then. Speaking of "Real-Life", you may benefit from simply signing up on the StackOverflow subsidiary of StackExchange. You will receive plenty of professional, non-aggressive responses on that website.
FroggoBLOX
#182290307Sunday, January 24, 2016 5:58 AM GMT

"Speaking of "Real-Life", you may benefit from simply signing up on the StackOverflow subsidiary of StackExchange. You will receive plenty of professional, non-aggressive responses on that website." nah they'll just close your thread for being "off-topic" or "unclear" Hello, I'm Chandler. I make jokes when I'm uncomfortable.
UnsourcedAnon
#182290370Sunday, January 24, 2016 5:59 AM GMT

'nah they'll just close your thread for being "off-topic" or "unclear"' This will only occur if you do not format your thread properly. The professionally-qualified individuals cannot help you if you do not specify a relevant issue.
Funification
#182290738Sunday, January 24, 2016 6:07 AM GMT

yeah im signed up there Funification | Was dominusawesomus | you wil cryying when obama take yur computr |Yee | ParanoidHumanoid is my trading account

    of     1