8.2.8: Area of a Square with Default Parameters

The Problem

There are several possible problems here. One is that you did not set the default parameter correctly. Another, more likely problem, is that you didn't set it to change to the default parameter when necessary.

The Solution

First, be sure that you've set your default parameter and made that equal to 10 and that is the last parameter set in the function. 

Second, be sure that you call the function the way you need to. Do that as follows:

if user_input > 0:

calculate_area(user_input)

else:

calculate area()

Note that the second option relies on the default value.