2019/9/23. Fizz Buzz Problem by Python Source codes for i in range ( 1 , 21 ) : if i % 15 == 0: print ( "Fizz Buzz" ) continue if i % 3 == 0: print ( "Fizz" ) continue if i % 5 == 0: print ( "Buzz" ) continue print ( i ) This is the source code of “ Fizz Buzz Problem ” by Python. I am learning Python and I am starting to show my source codes on my blog!
Hello. I am Kohei Takagi(髙木 耕平), Japanese. I want to be world advisor. “Tomorrow is better day, tomorrow will be better day. Live today hard.” I want to write what I think about the world, on this blog. Thank you for reading my blog!