Python3基础之条件与循环控制实例解析
本文实例形式讲解了Python3的条件与循环控制语句及其用法,是学习Python所必须掌握的重要知识点,现共享给大家供大家参考。具体如下:
一般来说Python的流程控制语句包括:if条件语句、while循环语句、for循环语句、range函数以及break、continue、pass控制语句。这些语句在Python中的语义和在其他语言中基本是一样的,所以这里就只说它们的用法。
一、if语句
if语句是最常用的条件控制语句,Python中的一般形式为:
if 条件一: statements elif 条件二: statements else: statements
Python中用elif代替了else if,所以if语句的关键字为:if – elif – else。
注意:
1、每个条件后面要使用冒号(:),表示接下来是满足条件后要执行的语句块。
2、使用缩进来划分语句块,相同缩进数的语句在一起组成一个语句块。
3、在Python中没有switch – case语句。
示例代码如下:
x = int(input("Please enter an integer: ")) if x < 0: print('Negative.') elif x == 0: print('Zero.') else: print('Positive.')
二、while语句
Python中while语句的一般形式:
while 判断条件: statements
同样需要注意冒号和缩进。另外,在Python中没有do..while循环。
示例代码如下:
a, b = 0, 1 while b < 10: # 循环输出斐波纳契数列 print(b) a, b = b, a+b
三、for语句
Python中的for语句与C语言中的for语句有点不同:C语言中的for语句允许用户自定义迭代步骤和终止条件;而Python的for语句可以遍历任何序列(sequence),按照元素在序列中的出现顺序依次迭代。一般形式为:
for variable in sequence: statements else: statements
示例代码如下:
words = ['cat','love','apple','python','friends'] for item in words: print(item, len(item))
如果你需要在循环体内修改你正迭代的序列,你最好是制作一个副本,这时切片标记就非常有用了:
words = ['cat','love','apple','python','friends'] for item in words[:]: # 制作整个列表的切片副本 if len(item) >= 6: words.insert(0, item) print(words)
我们注意到循环语句中还可以使用else子句,下面第五点有讲到。
四、range函数
如果你要遍历一个数字序列,那么内置的range()函数就可以派上用场了。函数range()常用于for循环中,用于产生一个算术数列:
>>> list(range(10)) # 默认从0开始 [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] >>> list(range(1, 11)) # 从1到11,前闭后开 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] >>> list(range(0, 30, 5)) # 5表示步长,每隔5取一个数 [0, 5, 10, 15, 20, 25]
示例代码如下:
for i in range(2, 11): print(i)
五、break、continue、pass及else子句
①.break
break语句与C语言中的一样,跳出最近的for或while循环。
②.continue
continue语句同样是从 C 语言借用的, 它终止当前迭代而进行循环的下一次迭代。
③.pass
pass语句什么都不做,它只在语法上需要一条语句但程序不需要任何操作时使用。pass语句是为了保持程序结构的完整性。
④.else子句
在循环语句中还可以使用else子句,else子句在序列遍历结束(for语句)或循环条件为假(while语句)时执行,但循环被break终止时不执行。如下所示:
# 循环结束执行else子句 for i in range(2, 11): print(i) else: print('for statement is over.') # 被break终止时不会执行else子句 for i in range(5): if(i == 4): break; else: print(i) else: print('for statement is over') # 不会输出

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP is a widely used open source server-side scripting language that can handle all tasks in web development. PHP is widely used in web development, especially for its excellent performance in dynamic data processing, so it is loved and used by many developers. In this article, we will explain the basics of PHP step by step to help beginners from getting started to becoming proficient. 1. Basic syntax PHP is an interpreted language whose code is similar to HTML, CSS and JavaScript. Every PHP statement ends with a semicolon; Note

What is PHP? PHP (Hypertext Preprocessor) is a widely used open source scripting language mainly used for web development. It provides a powerful and flexible platform for creating dynamic web pages and applications. With its simple and intuitive syntax, PHP allows developers to embed code directly into HTML, allowing for seamless integration of dynamic content, database connections, and server-side functionality. PHP supports a wide range of databases, making it compatible with various data storage systems. It also provides a wide range of libraries and frameworks that enable developers to efficiently build powerful and scalable web solutions. PHP's popularity stems from its ease of use, broad community support, and extensive documentation, which contributes to its widespread adoption and continued growth as a reliable web development language

Python is a popular high-level programming language that is very practical and flexible. However, when writing loops in Python, sometimes you encounter the problem of incorrect loop conditions. This article will introduce the causes and solutions of loop condition errors in Python. 1. Causes of loop condition errors Loop condition errors are usually caused by errors in variable values or logic errors. The specific performance is: the variable is not updated correctly. If the variables in the loop are not updated correctly, the loop condition will always remain the same. The conditional expression is malformed. if clause

Go language is a statically typed, compiled language developed by Google. Its concise and efficient features have attracted widespread attention and love from developers. In the process of learning the Go language, mastering the basic knowledge of variables is a crucial step. This article will explain basic knowledge such as the definition, assignment, and type inference of variables in the Go language through specific code examples to help readers better understand and master these knowledge points. In the Go language, you can use the keyword var to define a variable, which is the format of the var variable name variable type.

If we want to install the win10 operating system, we first need to know whether our hardware equipment can install the win10 operating system. However, generally speaking, devices that can run win7 and win8 can also be installed. Win10 does not have high requirements for hardware equipment. So let’s take a look at the configuration requirements of the win10 system with the editor~ What are the requirements for installing the win10 system? Memory: 2GB memory for 64-bit architecture and 1GB memory for 32-bit architecture. Storage: 20GB of available space for 64-bit systems and 16GB of available space for 32-bit systems. Although not officially documented, it's best to have 50GB of remaining storage for a flawless experience. CPU frequency: up to 1GHz. Screen resolution: 8

Basic introduction to PHP: How to use the echo function to output text content. In PHP programming, you often need to output some text content to a web page. In this case, you can use the echo function. This article will introduce how to use the echo function to output text content and provide some sample code. Before starting, first make sure you have installed PHP and configured the running environment. If PHP is not installed yet, you can download the latest stable version from the PHP official website (https://www.php.net).

If you want to implement some specific conditional logic in your PHP application, the IF conditional statement is an essential tool. In PHP, these conditional statements are used to execute different blocks of code, depending on whether a variable or condition in the program is true. Typically, an IF statement will check a certain condition and determine whether to execute a piece of code based on the result of the condition. Here is a simple example: $num=5;if($num>0){echo"$n

C language function encyclopedia: from basic to advanced, detailed explanation of how to use functions, specific code examples are required Introduction: C language is a widely used programming language, and its powerful functions and flexibility make it the first choice of many developers. In C language, function is an important concept. It can combine a piece of code into an independent module, improving the reusability and maintainability of the code. This article will introduce the use of C language functions from the basics and gradually advance to help readers master the skills of function writing. 1. Definition and calling of functions in C
