Python 新特性

3.8

"""
if  后面可以接赋值表达式
"""

a = [1, 2, 3, 4, 5, ]
if n := len(a) > 5:
    print(f"List len is too long ({n} elements, expected <= 10)")
else:
    print(f"List len <=5")


"""
1.增加一个 /,使a,b 必须使用位置参数调用,不能使用关键字参数调用
2.c,d 随便
3.e,f 必须使用关键字参数
"""

def test(a, b, /, c, d, *, e, f):
    print(f"a={a}, b={b}, c={c}, d={d}, e={e}, f={f}")

上一篇:记录解决TypeError: Expected a message Descriptor, got Descriptor问题


下一篇:C++:错误:expected unqualified-id before ‘=’ token