अजगर में फ़िज़बज़

शब्द गेम 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 की मदद से डेवलप करने के लिए, एपीआई पासकोड चालू करें

अपने प्रोजेक्ट में इस कोड को शामिल करके, हमारे Gemini API से इस प्रॉम्प्ट को कॉल किया जा सकता है.