a = frozenset((3, 2, 4))
print(a)
What data type is the object below ? L = [1, 23, ‘hello’, 1]
What will be the output of the following Python code?
print("abcdef".find("cd"))
Which of the following is not a complex number?
Deduce the output of the following code:
x = lambda a: a**3
y = lambda a, b: a*b
print(x(y(2, 3)))
_______ is a Django app and a framework that lets us create RESTful APIs rapidly.
What will be the output of the following code?
a = [0, 1, 2, 3, 4, 5]
b = (0, 1, 2, 3, 4, 5)
c = {12, 14, 16, 15}
print(5 in a)
print(13 in c)
Which of the following statements is true about namespaces?