Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Kevin Faust
15,353 PointsPython basics last challenge
Hi everyone,
I just started python 30 minutes ago and I cannot seem to get the last challenge. It's a bit too vague for me
name = "kevin"
a = 3
print("Hello")
print(name)
print("Let's do some math!")
print(5 + a) << originally "a"
print("Thanks for playing along!')
I'm not sure what I should do for adding 5 + "a". I tried removing the quotes and made "a" into a variable but that didn't seem to work either.

Kevin Faust
15,353 PointsHey Jeffery,
Thanks. I updated my code however it's still not working. I get this error: SyntaxError: EOL while scanning string literal

Jeffery Austin
8,128 PointsYour last line has a single quote ending the statement instead of a double quote
print("Thanks for playing along!")
1 Answer

Jeffery Austin
8,128 Pointsname = "kevin"
a = 3
print("Hello")
print(name)
print("Let's do some math!")
print(5 + a)
print("Thanks for playing along!")

Kevin Faust
15,353 Pointsthanks

Jeffery Austin
8,128 PointsNo problem, glad I could help!
Jeffery Austin
8,128 PointsJeffery Austin
8,128 PointsOne thing I noticed is that kevin needs to be in quotes.
name = "kevin"