Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 226 Bytes

bool.md

File metadata and controls

23 lines (17 loc) · 226 Bytes

布尔类型

  • True表示布尔值为真
  • False表示布尔值为假
  • 内置布尔函数为bool()
a = True
print(a)
print(1 == 1)
print(1 > 3)
'''
output:
True
True
False
'''

回索引目录