Fizzbuzz em Python

Gerar código Python para o jogo de palavras Fizzbuzz

Abrir no Google AI Studio

Texto do prompt

Escreva "chuzbuzz" em Python. Adicione comentários em cada linha.

Exemplos de respostas:

Claro, aqui está o programa FizzBuzz em Python com comentários:

# This program prints the numbers from 1 to 100.
# For multiples of three, it prints "Fizz" instead of the number.
# For multiples of five, it prints "Buzz" instead of the number.
# For numbers which are multiples of both three and five, it prints "FizzBuzz" instead of the number.

for i in range(1, 101):
    # Check if i is divisible by 3.
    if i % 3 == 0:
        # If i is divisible by 3, print "Fizz".
        print("Fizz")
    # Check if i is divisible by 5.
    elif i % 5 == 0:
        # If i is divisible by 5, print "Buzz".
        print("Buzz")
    # If i is not divisible by 3 or 5, print i.
    else:
        print(i)

Espero que isso seja útil. Se tiver alguma dúvida, entre em contato com a gente.

Receber código

Ative a chave de API para desenvolver com a API Gemini

Chame esse comando da nossa API Gemini integrando o código a seguir ao projeto.