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 trialKevin 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"