在Python中,可以通過以下兩種方式來定義bool變量:
1、直接賦值給變量:
```python
is_true = True
is_false = False
```
2、使用bool()函數將其他數據類型轉換為bool類型:
```python
num = 10
is_zero = bool(num)
print(is_zero) # Output: True
empty_list = []
is_empty = bool(empty_list)
print(is_empty) # Output: False
```