You can download this code by clicking the button below.
This code is now available for download.
Returns the smaller of the two given arguments.
Technology Stack : Comparison operators
Code Type : Comparison function
Code Difficulty : Intermediate
def aaaa(arg1, arg2, arg3):
if arg1 < arg2:
return arg1
else:
return arg2