Does Python actually contain a Boolean value? I know that you can do:
checker = 1 if checker: #dostuff
But I\'m quite pedantic and enjo
Unlike Java where you would declare boolean flag = True, in Python you can just declare myFlag = True
boolean flag = True
myFlag = True
Python would interpret this as a boolean variable