IDE, for, while loop, range (), continue, break, how to use its significance

Integrated Development Environment (IDE, Integrated Development Environment)
text editor for VIM # classic Linux
Emacs #linux text editor than vim easier to use
Eclipse # Java IDE, support for Python, c, c ++
Visual Studio # developed by Microsoft IDE , python, c ++, the Java, C #
notepad ++,
Sublime python development
ide Pycharm, is mainly used for the development of python

 

for i in range (10): #range (3) comprises 0,1,2

    Execute the statement

    continue # end of this cycle, direct access to the next

else:

    Execute the statement

 

while conditions:

    Execute the statement

    break # poor out of the end of the cycle.

else:

    Execute the statement

Guess you like

Origin www.cnblogs.com/styleonme/p/11111586.html