This was a question on my test and I got it incorrect. When I put it in Python the output is None. I don't understand why so it would be great if someone could explain that to me.
def multiply(s,t):
    t*=s
    return
def main():
    d=multiply(2,3)
    print(d)
main()
 
    