What is break in python?
Answer / Shiwali Gupta
The 'break' statement in Python terminates the loop it is contained within. When a break statement is encountered, control jumps out of the current loop and continues with the next line following the loop.
| Is This Answer Correct ? | 0 Yes | 0 No |
Understanding python super() with __init__() methods?
What is a list in python?
What is type () in python?
When would you use triple quotes as a delimiter?
Which all are the operating system that Python can run on?
What is for-else and while-else in python?
What are the local and global variables in python?
How can you share global variables across modules?
What is the difference between del() and remove() methods of the list?
How would you create an empty numpy array in python?
What do you understand by *args and **kwarg python?
Which is fastest implementation of python?