what is correct notation for dictionary ?
print(3 * 'un' + 'ium')
What is the output of the given code?
a=11
b=4
print(a**b)
Find the output of the following snippet:
a=4
b=[1,2,3]
c=a+b[2]
print(c%4)
Method issubclass() checks if a class is a subclass of another class.
What is the output of the given code?
for i in range(2):
print (i)
Which of the following data types in Python are mutable?
How many keyword arguments can be passed to a function in a single function call?
Which of the following functions is not defined under the sys module?
What will be the output of the following Python code snippet?
d1 = {"john": 40, "peter": 45}
d2 = {"john": 466, "peter": 45}
d1 == d2