51.
What is the maximum possible length of an identifier in Python?

52.
What will be the output of the following Python code?
print("abc. DEF".capitalize())

53.
What will be the output of the following Python code?
i = 1
while True:
    if i%3 == 0:
        break
    print(i)
 
    i + = 1

60.
The process of pickling in Python includes . . . . . . . .