A set of practice questions that a beginner of Python should be able to answer quite quickly if he/she has grasped the subject. Practice can help and one should not just learn it by heart.
x = 3
y = x + 3
y = int(str(y) + "2")
print(y)
Output - 62
x = 3
num = 17
print(num % x)
Output - 2
list = [1, 1, 2, 3, 5, 8, 16]
print(list[list[4]])
Output - 8
A bit confusing for beginners but it is easy to grasp and do try substituting various numbers and practice it.