用 Python 震動而成的嗡嗡聲

為文字遊戲 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)

希望以上資訊對你有幫助!如有其他問題,歡迎與我們聯絡。

取得程式碼

啟用 API 金鑰以使用 Gemini API 進行開發

您可以透過將下列程式碼整合至專案,透過 Gemini API 呼叫這項提示。