Question

Consider the following Python code:     def mystery(a,
b):         if a == 0:             return b         else:             return mystery(b % a,
a)     print(mystery(15, 20))     What is the output of this code?

B 5
C 15
D 20
E Error
Practice Next

Hey! Ask a query