在Python中,可以通过以下两种方法创建布尔变量:
is_valid = True is_completed = False
is_greater = 5 > 3 # True is_equal = 4 == 4 # True is_less = 2 < 1 # False