# Author: Tony Chung # Date: 12/16/2015 # Description: fizz buzz # print 'fizz' count divisible by 3 # print 'buzz' if count is divisible by 5 # print 'fizz buzz' if count is divisble by both # print number if neither of above count = 0 while count < 101: if (count % 5) == 0 and (count % 3) == 0: print 'Fizz Buzz' count = count + 1 elif (count % 3) == 0: print 'Fizz' count = count + 1 elif (count % 5) == 0: print 'Buzz' count = count + 1 else: print count count = count + 1
Run
Reset
Share
Import
Link
Embed
Language▼
English
中文
Python Fiddle
Python Cloud IDE
Follow @python_fiddle
Browser Version Not Supported
Due to Python Fiddle's reliance on advanced JavaScript techniques, older browsers might have problems running it correctly. Please download the latest version of your favourite browser.
Chrome 10+
Firefox 4+
Safari 5+
IE 10+
Let me try anyway!
url:
Go
Python Snippet
Stackoverflow Question