Fizzbuzz ใน Python

สร้างโค้ด Python สำหรับเกมคำศัพท์ Fizzbuzz

ประเภทพรอมต์: ข้อความ
กรณีการใช้งาน
โค้ด สร้าง
เปิดใน Google AI Studio

ข้อความแจ้ง

เขียน fizzbuzz ใน Python แสดงความคิดเห็นแต่ละบรรทัด

คำตอบตัวอย่าง

ได้เลย นี่คือโปรแกรม FizzBuzz ใน Python พร้อมความคิดเห็น

# 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 ของเราด้วยการผสานรวมโค้ดต่อไปนี้ลงในโปรเจ็กต์ของคุณ