>>> True = False
False
In the above assignment, True is just a variable like any other variable you use.
Its scope is limited to the current scope. So you can assign any values to it like in the below example. Note that the comparison 2 < 3 still prints True, because you have still access to builtin.
>>> True = 3
>>> True
3
>>> 2 < 3
True