<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
<In what way does your code behave incorrectly? Include ALL error messages.>
<What do you expect to happen instead?>
``` def fizz_count(fi): fi = ["fizz","cat","fizz"] count = 0 for x in fi: if x == "fizz": count = count + 1 return count ```Unfortunately, I am unable to execute the above codes and get desired output. Please someone verify and guide. Thanks a mill in advance.
I