Help me in solving PYTH23 problem

My issue

length=45
width=76
area=length*width
print(‘The Area of the given rectangle is area’)

My code

# Update the code below this line to solve the problem
length=45
width=76
area=length*width
print('The Area of the given rectangle is area')

Learning course: Python with Data structures
Problem Link: CodeChef: Practical coding for everyone

Hii @p_20ec336

The mistake you have done is in this line. print(‘The Area of the given rectangle is area’)
You have to close the quote’ before the variable area like below
Correct Code:
length=45
width=76
area=length*width
print(‘The Area of the given rectangle is’, area)

Thank you, hope it will helps :smile: