
HARUN SAPLI
2,581 Pointssquaring.py
def square(number):
return number*number
result=square
print(result)
1 Answer

Jeff Muday
Treehouse Moderator 23,580 PointsThe second part of this challenge requires using "square()" with the paramter 3 and assigning to a variable named result. This should get you going on it.
def square(number):
return number * number
result = square(3) # this will fix it.
HARUN SAPLI
2,581 PointsHARUN SAPLI
2,581 Pointsthank you !