Hey guys so I’m learning about functions and parameters and ive been finding it hard i watched a YouTube video on it and followed this guys code buy when i build it i get errors, anyone can help?
Thanks
def simple_addition(num1, num2):
answer = num1 + num2
print(“num1 is” + num1)
print(answer)
simple_addition(5, 3)