myset = {3, 4, 5, 1, 23, 45, 23, 89, "rohit", "raman", "rohit", 4, 5 , True, False, 3j}
print(myset)
# Output-
{False, 1, 3, 4, 5, 3j, 'raman', 45, 23, 89, 'rohit'}
My question is why its not printing "True" in output, but its printing "False". If it can print False then why not True?