Python_basic

Posted by Zhenda on Wed, Sep 18, 2024
Total Views:

python 函数中, 参数的定义顺序

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
def func(
    pos1,              # 位置参数
    pos2,              # 位置参数
    pos3: int = 10,    # 带默认值的参数
    *args,             # 可变位置参数
    kw1,               # 关键字参数
    kw2: str = "test", # 带默认值的关键字参数
    **kwargs           # 可变关键字参数
):
    pass

多行import, 换行

1
2
3
4
5
from .utils.helpers import (
    format_datetime,
    calculate_price,
    generate_order_number,
)

except

1
2
3
4
5
try:
    1/0
except Exception as e:
    print(e)
    raise e

unpack

1
2
3
4
5
6
7
>>> a, b, *c = [1,2,3,3,4,5,6]
>>> a,b,c
(1, 2, [3, 3, 4, 5, 6])

>>> a, *b, c = [1,2,3,3,4,5,6]
>>> a,b,c
(1, [2, 3, 3, 4, 5], 6)