Python if .. else, pythonif .. else

Source: Internet
Author: User

Python if .. else, pythonif .. else

I. Introduction

1. Complete Form

If <condition judgment 1>: <execution 1> elif <condition Judgment 2>: <execution 2> elif <condition judgment 3 >:< execution 3> else: <execution 4>

Note: 1. the colon after the if clause cannot omit ":", and four spaces are required for the indent rule.

2. if the value of True is determined from the top down. if the value of True is determined from the top down, the statement under the corresponding judgment is executed. no matter whether the subsequent judgment is True or not

2. Example

Determines whether it is adult

#!/usr/bin/env python3# -*- coding: utf-8 -*-age=20if age>18:    print ('adult')elif age>7:    print ('teenager')else:    print ('kid')

The final running result is "adult", and elif age> 7 does not meet the conditions, which is the second note above, when the conditional judgment is True, no further judgment will be made.

 

 

 

Note:

Author: pursuer. chen

Blog: http://www.cnblogs.com/chenmh

All essays on this site are original. You are welcome to repost them. However, you must indicate the source of the article and clearly give the link at the beginning of the article.

Welcome to discussion

Related Article

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.