1# Using "if not" is practically saying that, 'if this condition is false......'
2a = False
3if not a:
4 print("a is False")
5
6# IS SAME AS:
7
8if a == False:
9 print("a is False")
1boolean = False
2
3if not boolean: #Boolean is false.
4 print("No")
5else: #Boolean is True
6 print("Yes")