Iterative / Loop Processing (पुनरावृत्त / लूप प्रसंस्करण) :-
Iterative / Loop Processing वह प्रक्रिया है जिसमें किसी कार्य (Task) को एक या अधिक बार तब तक दोहराया जाता है, जब तक कि दी गई शर्त (Condition) सत्य (True) रहती है या निर्धारित संख्या (Specified Number of Times) पूरी नहीं हो जाती।
Python में Loop का उपयोग बार-बार एक ही कार्य को करने के लिए किया जाता है।
English:
Iterative / Loop Processing is the process of repeating a task one or more times until a given condition remains True or a specified number of iterations is completed.
In Python, loops are used to execute the same task repeatedly.
Algorithm (Print Numbers 1 to 5) :-