इस ट्यूटोरियल में, हम श्रृंखला का योग ज्ञात करने के लिए कोड लिखने जा रहे हैं n + nn + nnn + ... + n (m बार) . हम इसे Python में बहुत आसानी से कर सकते हैं। आइए कुछ उदाहरण देखें।
Input: n = 1 m = 5 Series: 1 + 11 + 111 + 1111 + 11111 Output: 12345
एल्गोरिदम
समस्या को हल करने के लिए नीचे दिए गए चरणों का पालन करें।
1. Initialise the n and m. 2. Initialise total to 0. 3. Make the copy of n to generate next number in the series. 4. Iterate the loop m times. 4.1. Add n to the total. 4.2. Update the n with n * 10 + copy_n. 5. Print the total.
उदाहरण
नीचे दिए गए कोड को देखें।
# initializing n and m n = 1 m = 5 # initializing total to 0 total = 0 # making the copy of n to get next number in the series copy_n = n # iterating through the loop for i in range(m): # adding n to total total += n # updating n to get next number in the serias n = n * 10 + copy_n # printing the total print(total)
आउटपुट
यदि आप उपरोक्त कोड चलाते हैं, तो आपको निम्नलिखित परिणाम प्राप्त होंगे।
12345
निष्कर्ष
यदि आपको लेख में कोई संदेह है, तो उनका उल्लेख टिप्पणी अनुभाग में करें।