What is break in python?



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

Post New Answer

More Python Interview Questions

Understanding python super() with __init__() methods?

1 Answers  


What is a list in python?

1 Answers  


What is type () in python?

1 Answers  


When would you use triple quotes as a delimiter?

1 Answers  


Which all are the operating system that Python can run on?

1 Answers  


What is for-else and while-else in python?

1 Answers  


What are the local and global variables in python?

1 Answers  


How can you share global variables across modules?

1 Answers  


What is the difference between del() and remove() methods of the list?

1 Answers  


How would you create an empty numpy array in python?

1 Answers  


What do you understand by *args and **kwarg python?

1 Answers  


Which is fastest implementation of python?

1 Answers  


Categories