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

Kevin Faust
Kevin Faust
15,353 Points

Python 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.

Jeffery Austin
Jeffery Austin
8,128 Points

One thing I noticed is that kevin needs to be in quotes.

name = "kevin"

Kevin Faust
Kevin Faust
15,353 Points

Hey Jeffery,

Thanks. I updated my code however it's still not working. I get this error: SyntaxError: EOL while scanning string literal

Jeffery Austin
Jeffery Austin
8,128 Points

Your last line has a single quote ending the statement instead of a double quote

print("Thanks for playing along!")

1 Answer

Jeffery Austin
Jeffery Austin
8,128 Points
name = "kevin"
a = 3


print("Hello")
print(name)

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

print("Thanks for playing along!")