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 trial
Devansh Lodha
365 PointsNumber Game Takeaways Code Challenge
So This about how to solve the squared code challenge....
Here's The Question --> This challenge is similar to an earlier one. Remember, though, I want you to practice! You'll probably want to use try and except on this one. You might have to not use the else block, though. Write a function named squared that takes a single argument. If the argument can be converted into an integer, convert it and return the square of the number (num ** 2 or num * num). If the argument cannot be turned into an integer (maybe it's a string of non-numbers?), return the argument multiplied by its length. Look in the file for examples.
I'm just not getting how to use the try and except commands...
Can anyone please answer me the question
1 Answer
Alex Staenke
7,324 PointsLook again at the video. The idea behind try / except is somewhat similar to an if / else approach.
Let the computer try to do something and if it doesn't work then do what is in the except block.
try:
convert the thing that was passed to the function to a number.
except:
here is what should happen if the thing cannot be converted to a number