Python note two Python statement

Source: Internet
Author: User

1.for statement:

Script instance:

#!/usr/bin/python

For I in Range (1,15):

Print I

Else

print ' The loop is done! '


2.while/if statement:

Script instance:

#!/usr/bin/env python

#FileName: while1.py

running = True

A = 20

b = Int (raw_input (' Enter A number B: '))

While running:

If a = = B:

print ' Good,your number is Ture!! '

running = False #状态为False则终止循环

Else

print ' Bad,pleas Try again! '

print ' Done '

3.break statement:

Script instance:

#!/usr/bin/env python

#FileName: while1.py

running = True

A = 20

b = Int (raw_input (' Enter A number B: '))

While running:

If a = = B:

print ' Good,your number is Ture!! '

Break #终止循环

Else

print ' Bad,pleas Try again! '

print ' Done '

4.continue statement:

Script instance:

#!/usr/bin/python

#FileName: continue.py

While True:

A = Int (raw_input (' Enter A Number: '))

if A = = 23:

Print "The number is%s!"% A

Break

If A! = 23:

Print "Please continue enter number."

Continue #符合该条件则继续循环

print "Done"


Python note two Python statement

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.