2. Cyclic judgment

Source: Internet
Author: User
If judgment For Loop
for i in range(1,5):        print i
for i in range(5):        print i

Use variables to control the number of cycles:
  1. #!/usr/bin/pythonlist=[‘lk‘,‘tom‘,‘jack‘]a=4for name in range(1,a):        print name
Small exercise: Use for and if together
  1. [[email protected] python_scripts]# cat 4for.py #!/usr/bin/pythonlist=[‘lk‘,‘tom‘,‘jack‘]for name in list:        if name==‘lk‘:                print name,‘ is very good!‘        else:                print nameprint ‘loop over!‘[[email protected] python_scripts]# python 4for.py lk  is very good!tomjackloop over!

While Loop
  1. [[email protected] python_scripts]# cat 5while.py #!/usr/bin/pythonwhileTrue:        input=raw_input(‘(alive|dead|other):‘)        if input==‘alive‘:                print ‘The process is ‘,input        else:                print ‘The process is ‘,input                break

2. Cyclic judgment

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.