Imprimer Boolean en Python

print(10 > 9) #Output: True
print(10 == 9) #Output: False
print(10 < 9) #Output: False
Asif Iqbal Paracha