if boolean type python code example
Example 1: python type checking boolean
isinstance(x[0], (int, float))
Example 2: check if boolean is true python
b = True
if b:
print('b is True')
else:
print('b is False')
isinstance(x[0], (int, float))
b = True
if b:
print('b is True')
else:
print('b is False')