not() function works like not keyword as shown below:
print(not()) # True
print(not(False)) # True
print(not(True)) # False
print(not True) # False
print(not False) # True
But Python doc doesn't explain not() function so not() should be explained in Python doc.