Function Summing First Argument and Product of the Other Two

  • Share this:

Code introduction


This function accepts three arguments and returns the sum of the first argument and the product of the second and third arguments.


Technology Stack : Python

Code Type : Function

Code Difficulty :


                
                    
def abcd(arg1, arg2, arg3):
    return arg1 + arg2 * arg3                
              
Tags: