python does not synbols code example
Example 1: if not python
boolean = False
if not boolean: #Boolean is false.
print("No")
else: #Boolean is True
print("Yes")
Example 2: not in python
x = 10
if not x:
print("True")
else:
print("False")
Example 3: if not python
a = False
if not a:
yourFunction()