当前位置: 首页 > 图灵资讯 > 行业资讯> Python3.8有哪些新特性?

Python3.8有哪些新特性?

来源:图灵python
时间: 2024-08-27 13:26:15

1、海象表达式 :=

新的语法 :=将变量赋值, 这种变量是更大表达式的一部分。

if(n:=len(a))>10:
print(f"Lististoolong({n}elements,expected<=10)")

2、仅位置参数 /

新函数参数语法 / 说明某些函数参数必须指定为位置参数, 不能用作关键字参数。

deff(a,b,/,c,d,*,e,f):
print(a,b,c,d,e,f)

3、f-strings说明符号 =

f-strings增加了 = 说明符, f'{expr=}' 它将扩展成表达式文本, 加一个等号, 以及执行表达式的结果。

>>>user='eric_idle'
>>>member_since=date(1975,7,31)
>>>f'{user=}{member_since=}'
"user='eric_idle'member_since=datetime.date(1975,7,31)"

以上是Python3.8的新特点介绍,希望对大家有所帮助。更多Python学习推荐:python教学

本文教程操作环境:windows7系统Python 3.8,DELL G3电脑。