What will be the output of this code? x = [1, 2, 3] y = x y.append(4) print(x)
What is the difference between list and tuple?
What does *args allow you to do in a function?
What will this code output? print(type(lambda x: x))
What is a Python decorator?
Which of the following is used to handle exceptions?
What will be the output? a = [1, 2, 3] b = a[:] b[0] = 100 print(a)
What is the time complexity of searching in a Python dictionary?
What does __init__ do in a class?
What is the output? print(bool("False"))