You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here is a section of a program written by a programmer and the output obtained after running it.
d = lambda x, y: _______
print(d(1, 3))
print(d(5, 2))
3
2
Guidelines: Pay attention to maintaining the conventions of the Python language. Be sure to answer accurately. Do not use operators and auxiliary functions.
Complete the missing part of the program (highlighted with a marker) so that the desired output is obtained.