Which of the following is a Python tuple?
What is returned by a view in Django?
What arithmetic operators cannot be used with strings?
Which of the following is a Python web framework?
Operators with the same precedence are evaluated from?
What will be the output of the following Python code?
d = {"john":40, "peter":45}
d["john"]
What is the output of the given code?
a=[1,2,3]
b=[1,3,2]
print(a is b)
What is the output of the given code?
tuple=('Abekus')
print(tuple[1:])
print(tuple[::-1])
Identify the output of the following code:
a = 10
while a < 10:
print(a)
What will be the output of the following Python code snippet?
>>> import collections
>>> a=collections.Counter([3,3,4,5])
>>> b=collections.Counter([3,4,4,5,5,5])
>>> a&b