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 (Retired) Things That Count Things That Count

Hi please can you tell me what's wrong with this python code?

I don't understand why It won't pass..

days_alive.py
age = int(22)
days = int((age*52)*7)
summary = ("I am " + {days} + " days old!")

3 Answers

Juliana Arrighi
Juliana Arrighi
9,928 Points

Hi Andy,

Variables in python don't need any characters around them, so if you want to concatenate two string together where one of the is stored in a variable, you can do so like this:

my_string = "house"
bigger_string = "tree" + my_string

In Python, the '{' and '}' characters are used to create "dictionaries", which have a specific syntax that needs to be used. Your code won't pass because python is looking for some extra information along with those curly braces.

Try one of the following:

1.

summary = "I am " + str(days) + " days old!"

or

2.

summary = "I am {} days old!".format(days)

The reason why your coding isn't working is because you're trying to concatenate a string with a set.

Thankyou both, the .foramt worked. :)