📜  如果没有解释,python - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:34.253000             🧑  作者: Mango

代码示例1
#A demo of Python 'not' operator
 
x = 10
 
if not x > 10:
 
    print("not retured True")
 
else:
 
    print("not retured False")