1
0

Python:控制语句

This commit is contained in:
周中平 2022-11-19 21:18:21 +08:00
parent c5e7f6a96d
commit 6eb2c180af
No known key found for this signature in database
GPG Key ID: B1DF9DD42D8E00DC
5 changed files with 86 additions and 28 deletions

View File

@ -1,7 +1,7 @@
---
id: 函数方法
title: 函数方法
sidebar_position: 3
sidebar_position: 5
data: 2022年2月10日
---

View File

@ -1,8 +1,14 @@
---
id: 控制语句
title: 控制语句
sidebar_position: 2
data: 2022年2月9日
description: Python 控制语句
keywords:
- Python
- 控制语句
tags:
- Python
sidebar_position: 3
author: 7Wate
date: 2022-11-19
---
## 判断
@ -12,20 +18,17 @@ data: 2022年2月9日
在Python中要构造分支结构可以使用`if`、`elif`和`else`关键字。
```python
"""
用户身份验证
Version: 0.1
Author: 骆昊
"""
username = input('请输入用户名: ')
password = input('请输入口令: ')
# 用户名是admin且密码是123456则身份验证成功否则身份验证失败
if username == 'admin' and password == '123456':
print('身份验证成功!')
>>> x = int(input("Please enter an integer: "))
Please enter an integer: 42
>>> if x < 0:
x = 0
print('Negative changed to zero')
elif x == 0:
print('Zero')
elif x == 1:
print('Single')
else:
print('身份验证失败!')
print('More')
```
当然如果要构造出更多的分支,可以使用`if...elif...else...`结构或者嵌套的`if...else...`结构。
@ -47,7 +50,7 @@ def http_error(status):
return "Something's wrong with the internet"
```
最后一个代码块: "变量名" `_` 被作为 *通配符* 并必定会匹配成功。 如果没有任何 case 语句匹配成功,则任何分支都不会被执行。
最后一个代码块: **"变量名" `_` 被作为 通配符 并必定会匹配成功**。 如果没有任何 case 语句匹配成功,则任何分支都不会被执行。
你可以使用 `|` (“ or ”)在一个模式中组合几个字面值:
@ -60,7 +63,7 @@ case 401 | 403 | 404:
### for
Python 的 for 语句与 C 或 Pascal 中的不同。Python 的 for 语句不迭代算术递增数值(如 Pascal或是给予用户定义迭代步骤和暂停条件的能力如 C而是迭代列表或字符串等任意序列元素的迭代顺序与在序列中出现的顺序一致。
Python 的 for 语句与 C 或 Pascal 中的不同。**Python 的 for 语句不迭代算术递增数值**(如 Pascal或是给予用户定义迭代步骤和暂停条件的能力如 C而是迭代列表或字符串等任意序列元素的迭代顺序与在序列中出现的顺序一致。
```python
"""
@ -76,6 +79,8 @@ for x in range(101):
print(sum)
```
**内置函数 range() 表示不可变的数字序列,通常用于在 for 循环中循环指定的次数。**
`range(101)`可以用来构造一个从 1 到 100 的范围,当我们把这样一个范围放到 `for-in` 循环中,就可以通过前面的循环变量 `x` 依次取出从 1 到 100 的整数。当然,`range` 的用法非常灵活,下面给出了一个例子:
- `range(101)`:可以用来产生 0 到 100 范围的整数,需要注意的是取不到 101。
@ -203,6 +208,41 @@ except:
raise
```
### with
Python 的 [`with`](https://docs.python.org/zh-cn/3/reference/compound_stmts.html#with) 语句支持通过上下文管理器所定义的运行时上下文这一概念。 此对象的实现使用了一对专门方法,**允许用户自定义类来定义运行时上下文**,在语句体被执行前进入该上下文,并在语句执行完毕时退出该上下文。
通过上下文管理器,我们可以更好的控制对象在不同区间的特性,并且**可以使用 with 语句替代 try...except** 方法,使得代码更加的简洁,主要的**使用场景是访问资源,可以保证不管过程中是否发生错误或者异常都会执行相应的清理操作,释放出访问的资源。**
```python
# with 读写文件
with open("myfile.txt") as f:
for line in f:
print(line, end="")
```
```python
# 基本思想是 with 所求值的对象必须有一个 enter() 方法,一个 exit() 方法。
# 紧跟 with 后面的语句被求值后,返回对象的 enter() 方法被调用,并将返回值赋值给 as 后面的变量。
# 当 with 的代码块全部被执行完之后,将调用前面返回对象的 exit() 方法。
class Sample:
def __enter__(self):
print("In __enter__()")
return "Foo"
def __exit__(self, type, value, trace):
print("In __exit__()")
def get_sample():
return Sample()
with get_sample() as sample:
print("sample:", sample)
```
### raise
`raise`语句支持强制触发指定的异常。例如:
@ -218,6 +258,24 @@ NameError: HiThere
## 其他
### assert
Python assert断言用于判断一个表达式在表达式条件为 false 的时候触发异常。
简单形式 `assert expression` 等价于:
```python
if __debug__:
if not expression: raise AssertionError
```
扩展形式 `assert expression1, expression2` 等价于:
```python
if __debug__:
if not expression1: raise AssertionError(expression2)
```
### pass
pass 语句不执行任何操作。语法上需要一个语句,但程序不实际执行任何动作时,可以使用该语句。例如:

View File

@ -1,7 +1,7 @@
---
id: 数据结构
title: 数据结构
sidebar_position: 2.5
sidebar_position: 4
data: 2022年2月11日
---

View File

@ -1,7 +1,7 @@
---
id: 简介
title: 简介
sidebar_position: 0
sidebar_position: 1
data: 2022年2月9日
---

View File

@ -1,7 +1,7 @@
---
id: 面对对象
title: 面对对象
sidebar_position: 4
sidebar_position: 6
data: 2022年1月28日
---