Table of Contents
1. Single branch statement: if statement
2. Two-branch statement: if else statement
3. Multi-branch structure: if – elif – else statement
四、嵌套分支结构
Home Backend Development Python Tutorial Common Python branch statement uses include:

Common Python branch statement uses include:

May 08, 2023 pm 09:01 PM
python branch statement

Common Python branch statement uses include:

Branch statements can be divided into single branch, two branch and multi-branch structures. Among all branches, only one path can be selected, and whether to execute is determined based on whether the branch condition is true or not. Since only one path can be selected for execution, the rules for establishing conditions for branch statements should be fully considered. The following are several examples to illustrate the use of branch statements.

1. Single branch statement: if statement

The single branch structure is the simplest selection structure. The syntax structure is as follows:

if 条件表达式:
 语句块
Copy after login

When the conditional expression is established , execute the statement block, if it is not established, it will not be executed. For example: the user inputs two numbers, compares their sizes, and outputs the smaller one.

num_a = int(input('please input a number:'))
num_b = int(input('please input another number:'))
if num_a > num_b:
 num_a, num_b = num_b, num_a #交换两个数
 print("the smaller one is",num_a)
Copy after login

The above example uses a single branch structure. When the condition that number a is greater than number b is established, the two are exchanged, and finally the smaller number a is output. In a branch statement, it is executed only when the condition is true. Otherwise, no exchange is performed, and the statements after the branch statement are directly executed sequentially.

2. Two-branch statement: if else statement

The two-branch structure adds an else statement on the basis of the single-branch structure. When the if condition is not established, the else statement is executed. The syntax structure is as follows:

if 条件表达式:
 语句块1
else:
 语句块2
Copy after login

The two-branch structure is a two-choice structure. One and only one of statement block 1 and statement block 2 will definitely be executed. Still the above example, using a two-branch statement can be written:

num_a = int(input('please input a number:'))
num_b = int(input('please input another number:'))
if num_a > num_b:
 print("the smaller one is",num_b)
else:
 print("the smaller one is",num_a)
Copy after login

Another example, to determine the gender based on the ID number, can be written:

id_code = input('请输入身份证号码:')
number = int(id_code[-2])
if number%2 == 0:
 print("女性")
else:
 print("男性")
Copy after login

The else implicit condition here is number%2 = = 0 does not hold, that is, number is an odd number, so else can be replaced by if number%2 == 1. However, considering the execution efficiency of the program, the two if statements need to be judged twice, while the else statement does not need to be judged. , so it is more efficient.

3. Multi-branch structure: if – elif – else statement

The multi-branch structure is an extension of the two-branch structure, that is, a case of multiple selections. The else statement is optional. When When else exists, one and only one branch will be executed. The grammatical structure is as follows:

if 条件表达式1:
 语句块1
elif条件表达式2:
 语句块2
…
elif条件表达式n:
 语句块n
else:
 语句块n+1
Copy after login

For example, let the user enter their height and weight to calculate their BMI index. BMI refers to body mass index, which is obtained by dividing weight (kg) by the square of height (m). There is an internationally accepted measurement standard:

##18.5-25 (not included)##FatObesity

##Too light

##Less than 18.5

Normal

25- 30 (not included)

##30-35(not included)

重度肥胖

35及以上

weight = float(input("请输入你的体重(Kg):"))
height = float(input("请输入你的身高(m):"))
BMI = weight / height ** 2
if BMI < 0:
 print("输入错误")
elif BMI < 18.5 :
 print("偏瘦")
elif BMI < 25 :
 print("正常")
elif BMI < 30 :
 print("偏胖")
elif BMI < 35 :
 print("肥胖")
else:
 print("重度肥胖")
Copy after login

上例通过计算得到BMI指数,根据其值输出所对应的“档位”,因为在设定分支条件时应当注意每个分支条件之间没有重复区域,才能保证输出结果为其中一种。

四、嵌套分支结构

在分支语句中如果要做进一步的条件判断,就会用到嵌套的分支结构。嵌套也可以有多层,通过缩进来表示其包含关系。

代表性语法结构如下:

if 条件表达式1:
 …
 if条件表达式2:
 语句块1
 else:
 语句块2
else:
 语句块3
Copy after login

例如上例在做身份证号的性别判断时,如果要先对输入的身份证号合法性做基本检查,例如其位数是不是正确,则需要嵌套分支:

id_code = input('请输入身份证号码:')
if len(id_code) == 18:
 number = int(id_code[-2])
 if number%2 == 0:
 print("女性")
 else:
 print("男性")
else:
 print("输入不合法")
Copy after login

The above is the detailed content of Common Python branch statement uses include:. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to open xml format How to open xml format Apr 02, 2025 pm 09:00 PM

Use most text editors to open XML files; if you need a more intuitive tree display, you can use an XML editor, such as Oxygen XML Editor or XMLSpy; if you process XML data in a program, you need to use a programming language (such as Python) and XML libraries (such as xml.etree.ElementTree) to parse.

Is there a free XML to PDF tool for mobile phones? Is there a free XML to PDF tool for mobile phones? Apr 02, 2025 pm 09:12 PM

There is no simple and direct free XML to PDF tool on mobile. The required data visualization process involves complex data understanding and rendering, and most of the so-called "free" tools on the market have poor experience. It is recommended to use computer-side tools or use cloud services, or develop apps yourself to obtain more reliable conversion effects.

How to beautify the XML format How to beautify the XML format Apr 02, 2025 pm 09:57 PM

XML beautification is essentially improving its readability, including reasonable indentation, line breaks and tag organization. The principle is to traverse the XML tree, add indentation according to the level, and handle empty tags and tags containing text. Python's xml.etree.ElementTree library provides a convenient pretty_xml() function that can implement the above beautification process.

Is the conversion speed fast when converting XML to PDF on mobile phone? Is the conversion speed fast when converting XML to PDF on mobile phone? Apr 02, 2025 pm 10:09 PM

The speed of mobile XML to PDF depends on the following factors: the complexity of XML structure. Mobile hardware configuration conversion method (library, algorithm) code quality optimization methods (select efficient libraries, optimize algorithms, cache data, and utilize multi-threading). Overall, there is no absolute answer and it needs to be optimized according to the specific situation.

How to convert XML to PDF on your phone? How to convert XML to PDF on your phone? Apr 02, 2025 pm 10:18 PM

It is not easy to convert XML to PDF directly on your phone, but it can be achieved with the help of cloud services. It is recommended to use a lightweight mobile app to upload XML files and receive generated PDFs, and convert them with cloud APIs. Cloud APIs use serverless computing services, and choosing the right platform is crucial. Complexity, error handling, security, and optimization strategies need to be considered when handling XML parsing and PDF generation. The entire process requires the front-end app and the back-end API to work together, and it requires some understanding of a variety of technologies.

Does XML modification require programming? Does XML modification require programming? Apr 02, 2025 pm 06:51 PM

Modifying XML content requires programming, because it requires accurate finding of the target nodes to add, delete, modify and check. The programming language has corresponding libraries to process XML and provides APIs to perform safe, efficient and controllable operations like operating databases.

Is there any mobile app that can convert XML into PDF? Is there any mobile app that can convert XML into PDF? Apr 02, 2025 pm 08:54 PM

An application that converts XML directly to PDF cannot be found because they are two fundamentally different formats. XML is used to store data, while PDF is used to display documents. To complete the transformation, you can use programming languages ​​and libraries such as Python and ReportLab to parse XML data and generate PDF documents.

How to convert XML files to PDF on your phone? How to convert XML files to PDF on your phone? Apr 02, 2025 pm 10:12 PM

It is impossible to complete XML to PDF conversion directly on your phone with a single application. It is necessary to use cloud services, which can be achieved through two steps: 1. Convert XML to PDF in the cloud, 2. Access or download the converted PDF file on the mobile phone.

See all articles