You can download this code by clicking the button below.
This code is now available for download.
This function accepts two arguments and adds them using the sum function from the NumPy library.
Technology Stack : NumPy
Code Type : Function
Code Difficulty : Intermediate
def random_sum(arg1, arg2):
import numpy as np
return np.sum([arg1, arg2])