Skip to content

Commit

Permalink
Reto #[0] [PYTHON]
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius authored and Marius committed Apr 7, 2023
1 parent 4264be7 commit 84d5e8c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Retos/Reto #0 - EL FAMOSO FIZZ BUZZ [Fácil]/python/MariusBD.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@


"""
/*
* Escribe un programa que muestre por consola (con un print) los
* números de 1 a 100 (ambos incluidos y con un salto de línea entre
* cada impresión), sustituyendo los siguientes:
* - Múltiplos de 3 por la palabra "fizz".
* - Múltiplos de 5 por la palabra "buzz".
* - Múltiplos de 3 y de 5 a la vez por la palabra "fizzbuzz".
*/
```
"""

def fizz_buzz(inicio=1,fin=101):
for numero in range(inicio,fin):
if numero % 3 == 0 and numero % 5 == 0:
print("fizzbuzz\n")
elif numero % 3 == 0:
print("fizz\n")
elif numero % 5 == 0:
print("buzz\n")
else:
print(numero,"\n")


print(fizz_buzz())

0 comments on commit 84d5e8c

Please sign in to comment.