c= {1,3,5,89.07, True, "Night", 1,3}
print(c)
when I run this code, the output I received was, {1, 3, 'Night', 5, 89.07}
but when I replaced the "True" bool with False, the output was, {False,1, 3, 'Night', 5, 89.07}
So, why it is not giving "True" bool in first case ?