My issue
My code
# Update the code below this line to solve the problem
length=45
width=76
area=length*width
Area='area'
print('The Area of rectangle is',Area)
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
# Update the code below this line to solve the problem
length=45
width=76
area=length*width
Area='area'
print('The Area of rectangle is',Area)
Learning course: Learn Python
Problem Link: CodeChef: Practical coding for everyone
@mannetarunasri
U have to do it like this
# Solution as follows
length = 45
width = 76
area = length * width
print("The Area of the given rectangle is", area)