欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

课时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
>>> 

** :幂

优先级

课时6_Python之常用操作符