पाइथन कितने कंट्रोल स्टेटमेंट को सपोर्ट करता है?
How many control statements python supports?
A)
B)
C)
D)
Explanation:
Python supports 3 control statements that help control the flow of execution in a program. These can be categorized as follows:
- break (Exits the nearest enclosing loop)
- continue (Skips the current iteration and moves to the next one)
- pass (A placeholder statement that does nothing; used for syntactical correctness)