Python-if statement

Source: Internet
Author: User

Python-if statement
The if statement is used to test a condition. if the condition is true, we run a statement (called the if-block). Otherwise, we will process another statement (called the else-block ). Else clauses are optional.

#! /Usr/bin/python # Filename: if. py number = 23 guess = int (raw_input ('enter an integer: ') if guess = number: print 'Congratulations, you guessed it. '# New block starts here print "(but you do not win any prizes !) "# New block ends hereelif guess <number: print 'No, it is a little her than that '# Another block # You can do whatever you want in a block... else: print 'No, it is a little lower than that '# you must have guess> number to reach hereprint 'done' # This last statement is always executed, after the if statement is executed

 

The elif and else sections are optional. The simplest and most effective if statement is:
If True: print 'Yes, it is true'

 

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.