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 からこのプロンプトを呼び出すことができます。