Not getting the result of program

Hey @dhirajworked its just simple you don’t need to worry…
after the 3rd line i.e. that’s the end of the function definition so you need to call the function outside the function definition.The solution is
def area(l):
a=l*l
print(“Area is:”,a)
area(2)
hope you got the solution…have a good day

To get the correct output , function call should be outside the function body.
so ,remove the indentation for the line area(2).