A loop structure or iterative structure or repetitive structure in programming refers to a control flow mechanism that allows a set of instructions or code to be executed repeatedly based on a condition or over a collection of items. Loops help automate repetitive tasks and reduce redundancy in code.
प्रोग्रामिंग में एक लूप संरचना या पुनरावृत्त संरचना या दोहराव संरचना एक नियंत्रण प्रवाह तंत्र को संदर्भित करती है जो किसी शर्त के आधार पर या वस्तुओं के संग्रह पर निर्देशों या कोड के एक सेट को बार-बार निष्पादित करने की अनुमति देती है। लूप्स दोहराए जाने वाले कार्यों को स्वचालित करने और कोड में अतिरेक को कम करने में मदद करते हैं।
Key Components of a Loop Structure:-
लूप संरचना के प्रमुख घटक:-
A.) Initialization:- The starting point or value for the loop.
ए.) इनिशियलाइज़ेशन:- लूप के लिए शुरुआती बिंदु या मान।
B.) Condition:- The logical test that determines whether the loop should continue or stop.
बी) स्थिति:- तार्किक परीक्षण जो यह निर्धारित करता है कि लूप जारी रहना चाहिए या बंद हो जाना चाहिए।
C.) Iteration:- The process of moving from one execution of the loop to the next. Increments or decrements are common forms of iteration.
सी.) पुनरावृत्ति:- लूप के एक निष्पादन से दूसरे निष्पादन तक जाने की प्रक्रिया। वृद्धि या कमी पुनरावृत्ति के सामान्य रूप हैं।
D.) Termination:- When the condition fails, the loop ends, and the program continues with the next block of code.
डी.) समाप्ति:- जब स्थिति विफल हो जाती है, तो लूप समाप्त हो जाता है, और प्रोग्राम कोड के अगले ब्लॉक के साथ जारी रहता है।
In Python, there are two main loop structures `for` loop and `while` loop.
पायथन में, दो मुख्य लूप संरचनाएं हैं `फॉर` लूप और `व्हाइल` लूप।
1.) For Loop:- A `for` loop is used to iterate over a sequence (like a list, tuple, string, or range) and execute a block of code for each item in that sequence.
1.) फॉर लूप : - एक `फॉर` लूप का उपयोग एक अनुक्रम (जैसे एक सूची, टपल, स्ट्रिंग, या रेंज) पर पुनरावृत्त करने और उस अनुक्रम में प्रत्येक आइटम के लिए कोड के एक ब्लॉक को निष्पादित करने के लिए किया जाता है।
Syntax:-
for item in sequence:
# Block of code to execute
Example 1:-
for i in range(0,5): #range(start,stop)
print(i)
Output:-
0
1
2
3
4
Example 2:-
fruits = ["apple", "banana", "cherry"]
for fruit in fruits:
print(fruit)
Output:-
apple
banana
cherry
Example 3:-
numbers = [1, 2, 3, 4, 5]
for num in numbers:
print(num)
Output:-
1
2
3
4
5
Example 4:-
word = "Python"
for letter in word:
print(letter)
Output:-
P
y
t
h
o
n
2.) While Loop:- A `while` loop repeatedly executes a block of code as long as the given condition is `True`.
2.) व्हाइल लूप:- एक `व्हाइल` लूप बार-बार कोड के एक ब्लॉक को निष्पादित करता है जब तक कि दी गई स्थिति `सही` है।
Syntax:-
while condition:
# Block of code to execute
Example 1:-
i = 0
while i < 5:
print(i)
i += 1
Output:-
0
1
2
3
4
Example 2:-
i = 0
while True: #infinite loop
i += 1
print(i)
if i == 5:
break # Breaks the loop when i equals 5
Output:-
1
2
3
4
5
Example 3:-
i = 0
while i < 10:
i += 1
if i % 2 == 0:
continue # Skips the even numbers
print(i)
Output:-
1
3
5
7
9
No comments:
Post a Comment