Factorial rescursivo y Fizzbuz Python

Iniciado por Bigbounty, Octubre 04, 2024, 01:08:49 PM

Tema anterior - Siguiente tema

0 Miembros y 1 Visitante están viendo este tema.

De nuevo disculpa por como llamo a las variables, soy un matao  ::)  ;D

Factorial recursivo

def factorial(n):
    if n == 0:
        return 1
    return n * factorial(n - 1)

print(factorial(10))


------------------------------------------------------------------------------------

y por aqui  el fizzbuz:

Fizzbuz

for i in range(1,100+1):
    print(i)
    if i % 3 == 0 and i % 5 == 0:
        print(i," es FIZZBUZZ")
    if i % 3 == 0:
        print(i," es FIZZ")
    if i % 5 == 0:
        print(i," es BUZZ ")
    print ("esto es otra cosa:")

    print(3 < 4 and ( "hola" > "xlaboracion" and 5 > 4))
    print("x")