Python의 Fizzbuzz

단어 게임 Fizzbuzz의 Python 코드 생성

프롬프트 유형: 텍스트
사용 사례:
코드 만들기
Google AI Studio에서 열기

프롬프트 텍스트

Python에서 fizzbuzz를 작성합니다. 각 줄에 주석을 추가합니다.

샘플 응답

네, 다음은 주석이 포함된 Python의 FizzBuzz 프로그램입니다.

# 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)

이 정보가 도움이 되었기를 바랍니다. 다른 궁금한 사항이 있으면 언제든지 알려 주시기 바랍니다.

코드 가져오기

Gemini API로 개발하려면 API 키를 사용 설정하세요.

다음 코드를 프로젝트에 통합하여 Gemini API에서 이 메시지를 호출할 수 있습니다.