Why does this happen in Python ?
>>> {True: "yes", 1: "no", 1.0: "maybe"}
{True: 'maybe'}
Comments (1)