|
Monday, 08 March 2010 18:21 |
The Python language provides break to stop execution and break out of the current loop. Python also includes continue to stop execution of the current iteration and start the next iteration of the current loop. The following example shows the use of the break and continue statements:
>>>word = "Pithon Phrasebook"
>>>string = ""
>>>for ch in word:
>>> if ch == 'i':
>>> string +='y'
>>> continue
>>> if ch == ' ':
>>> break
>>> string += ch
>>>print string
Python
 Read more: |