Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

continue

Symptoms of Diabetes
Monday, 12 December 2011 06:11
Thanks for providing us such a useful information. Keep up the good work and continue providing us more quality information from time to time.Symptoms of Diabetes

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/uafXvVRteZQ/14139

 
Python: iteration, break and continue
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: http://feeds.dzone.com/~r/dzone/snippets/~3/lgMcWH85ARs/10435

 


Taxonomy by Zaragoza Online