fizzbuzz Using python programming Language || Python programming || Fizzbuzz in Python programming

come code
Nov 17, 2021

--

for i in range(1,101):
if i % 3 == 0 and i % 5 == 0:
print(“ Fizz Buzz”)
elif i % 3 == 0:
print(“Fizz”)
elif i % 5 == 0:
print(“Buzz”)
else:
print(str(i))

Amazon:- https://amzn.to/3ck8QUX

headphone:- https://amzn.to/3cmkI8O

--

--

come code
come code

Written by come code

I write blog on programming and computer science.

No responses yet