Python海象运算符的使用

2024年08月03日 运算符 Python51

1、在判断条件下允许操作。在一定程度上简化了代码,但降低了可读性。

i = len((l := [1, 2, 3]))  # 先对l进行赋值,在对i赋值
while (i := i - 1) >= 0:  # 允许在表达式中运算
    print(l[i], end=' ')

2、python中的海象操作符较少使用,允许在判断中进行简单的赋值操作,没有其他特殊意义,只需了解其存在即可。

l = [1, 2, 3]
i = len(l) - 1
while i >= 0:
    print(l[i], end=' ')
    i -= 1

以上就是Python海象运算符的使用,希望对大家有所帮助。

本文链接:http://so.lmcjl.com/news/9841/

展开阅读全文