1. Boolean has 2 option : True or False>>> a=True>>> b=False>>> type(a)<type 'bool'>>>> type(b)<type 'bool'>>>> >>> a is bFalse2.>>> a is bFalse>>> a or bTrue>>> a and bFalse
Want to create your own Notes for free with GoConqr? Learn more.