Keys of a dictionary must be
Which is correct ?
>>> type({5})
What is the data type of the following obj?
obj = [ 10.2, "Hello", 45, {7, 9 }]
To store data in key value pairs which data type is used ?
Which of the following is not a data type ?
What is the output of the following code ?
print(bool())
print(bool('False'))
What is the output of the following code ?
p = [3, 4, 5][bool(0)]
print(p)
What is the output of the following code ?
print(not(7 & 7))
print(not(9 > 4))