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

Python Python Basics (2015) Python for Beginners Correct errors

Jerry Gomez
Jerry Gomez
5,778 Points

how to solve this question

the errors.py question

errors.py
print("Hello")
print(name)
name error
print("Let's do some math!")
print(5 + "a")
type error
print("Thanks for playing along!')
print("Thanks for playing along!")

1 Answer

There are certain errors in the code that you have to correct:

print("Hello")
print(name)
#name is not defined so either declare name or make it a string
name = "somename"
OR
print("name")

print("Let's do some math!")
print(5 + "a")
#cant add a string and a number
print(5 + 2)

print("Thanks for playing along!')
"#problem in quote either use single or double
print ("Thanks for playing along!")

SO final correct code. There are certain errors in the code that you have to correct:

print("Hello")
print("name")

print("Let's do some math!")
print(5 + 2)

print ("Thanks for playing along!")