Product of Two Arguments

  • Share this:

Code introduction


This function takes two arguments and returns their product.


Technology Stack : Built-in operators

Code Type : Mathematical calculation

Code Difficulty :


                
                    
def acha(arg1, arg2):
    return arg1 * arg2