Result Size: 625 x 571
demo_booleans4.py:
x
 
x = "Hello"
y = 15
print(bool(x))
print(bool(y))
C:\Users\My Name>python demo_booleans4.py
True
True