What is the two’s complement of -44?
What does the following code print?
What is the output of following :
lt1 = [1,2,3]
lt2 = [3,4,5]
lt1 < lt2
>>> x = "It starts & ends with x"
>>> x = pow (-2, -3)
>>> abs (x)
>>> x = x + 2
>>> x = round (x, 2)
>>> x
What will be the output of the following Python code snippet?
print('Ab!2'.swapcase())
What is the difference between list and tuple?
Which of the following Python functions is an impure function?