You can simply del your custom name to set it back to the default:
>>> True = False
>>> True
False
>>> del True
>>> True
True
>>>
You can simply del your custom name to set it back to the default:
>>> True = False
>>> True
False
>>> del True
>>> True
True
>>>