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 trialJesh Patel
1,252 PointsI wish this question was more detailed then whats stated. Someone please clarify what the question is asking me to do?
what am i suppose to type?
print("Hello")
print(name)
print("Let's do some math!")
print(5 + "a")
print("Thanks for playing along!')
1 Answer
Carlos Federico Puebla Larregle
21,074 PointsThe code challenge is asking you to correct the errors that that code has.
print("Hello")
print(name) <---- this variable called "name" was never defined
print("Let's do some math!")
print(5 + "a") <---- Python doesn't do type coercion so you can't add a string to a number
print("Thanks for playing along!') <---- Here is using double quotes first and single quotes after, can't do that.
Possible correction:
name = "Federico"
print("Hello")
print(name)
print("Let's do some math!")
print("5" + "a")
print("Thanks for playing along!")
I hope that helps a little bit