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!
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

Devino Missick
305 PointsBummer! `total` isn't the right amount. Be sure to add `current_count` to `upcoming_releases`. Restart Preview Get
current_count = 14
planned = 5
upcoming_releases = 2
del current_count
del planned
del upcoming_releases
current_count = 14
upcoming_releases = 4
total = 18
[MOD: added ```python formatting -cf]
1 Answer

Chris Freeman
Treehouse Moderator 68,390 PointsIn Task 2 is looking for an assignment statement where the two variables current_count
and upcoming_releases
are added together by the program and the result is assigned to total
. Something of the form a = b + c
You do not need to assign new values to either current_count
or upcoming_releases
.
Post back if you have more questions. Good Luck!!