How to use the IF statement for the Python Getting Started tutorial

Source: Internet
Author: User
The IF statement in Python is similar to other languages. The IF statement contains a logical expression that uses that data to compare and make decisions based on the results of the comparison.
Grammar:

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

If expression:  statement (s)

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

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

Example:

#!/usr/bin/pythonvar1 = 100if var1:  print "1-got a true expression value"  print var1var2 = 0if var2:  print " 2-got a true expression value "  print Var2print" Good bye! "

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

1-got a true expression Value100good 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.