প্রম্পট টেক্সট
পাইথনে ফিজবাজ লিখুন। প্রতিটি লাইন মন্তব্য করুন।
নমুনা প্রতিক্রিয়া
অবশ্যই, এখানে পাইথনে ফিজবাজ প্রোগ্রামটি মন্তব্য সহ রয়েছে:
# 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 থেকে এই প্রম্পটটি কল করতে পারেন।