I'm very new to programing, anyways, i was instructed to crate a program to calculate the are of rectangle, using the input from the user ( width, lenght ) using functions
here is what i have, but i'm getting a error at the end
recWidth = input ('Please enter the Width of the rectangle ')
recLength = input ('Please enter the Length of rectangle ')
#fuction
def recArea (recWidth, recLength):
result = recWidth * recLength
return result
print "The are of your Rectangle is", recArea