I am looking for the name of the process where you call a function using param=. For example:
class Test:
def __init__():
pass
def testing(arg1):
return solution = arg1 + arg1
t = Test()
t.testing(arg1=4)
What is the process called used in the last line where I explicit set each param manually?