Use of the IF statement in the Python introductory tutorial

Source: Internet
Author: User
Tags in python

This article mainly introduces the use of the IF statement of the Python introductory tutorial, which is the basics of getting started in Python, and needs friends to refer to the following

The IF statement in Python is similar to other languages. An If statement contains a logical expression that uses the data to compare and makes a decision based on the result of the comparison.

Grammar:

The syntax for the IF statement in the Python programming language is:

?

1 2 If Expression:statement (s)

If the Boolean expression evaluates to True, then the IF statement block is executed. If the If statement Boolean expression evaluates to False, the first set of code is executed.

The Python programming language assumes that any non-zero and non-null is true and, if zero or null, the value is assumed to be false.

Example:

?

1 2 3 4 5 6 7 8 9 10 11-12 #!/usr/bin/python var1 = + if Var1:print "1-got a true expression value" Print var1 var2 = 0 if Var2:print "2- Got a true expression value "Print var2 print" Good bye!

When the above code is executed, the following results are produced:

?

1 2 3 1-got a true expression value good bye!
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.