Q. What will be the output of the following code snippet?
Code:
a = "4, 5"
nums = a.split(',')
x, y = nums
int_prod = int(x) * int(y)
print(int_prod)
β
Correct Answer: (A)
20