Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialFelix Lopez
449 PointsI'm stumped
I feel like I'm missing something basic here but just overlooking it, also do I always import math?
import math
def square(number):
number = (input("Enter a number: "))
return (number*number)
2 Answers
Robert Gulley
Front End Web Development Techdegree Student 10,722 PointsIt depends on what part of the challenge you are on. If you are on the first part:
def square(number):
return (number*number)
You only have to import math if you are going to use one of the functions in the math class (i.e. ceil, floor, or sqrt), not to perform simple arithmetic.
Hope this helps!
Simon Coates
8,377 PointsI don't know python, but you seem to be trying to overwrite the parameter you're meant to use. For part 1, it seems to accept:
def square(number):
return number*number