课时6_Python之常用操作符
程序员文章站
2022-06-14 14:38:24
...
>>> not True
False
>>> not False
True
>>> not 0
True
>>> not 4
False
>>>
0:表示 False
非0的数字,表示True
>>> -3 ** 2
-9
>>> -(3**2)
-9
>>>
** :幂
优先级