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 Data Types Del

I have a bug in my challenge

I can't go further on this challenge, even known that I'm right. I'd checked my answer on workspace and is correct. I did the first task, but I can't go on the second task, it keeps sending me back to task 1.

delete.py
current_count = 14
planned = 5
upcoming_releases = 2
del planned 
total = current_count + upcoming_release

2 Answers

jacksonpranica
jacksonpranica
17,610 Points

Hey Leonardo,

I know you know you're "right", but the computer doesn't know you're "right" because of your spelling.

in your total calculation you have "upcoming_release" instead of "upcoming_releases". Frustrating how important that single s is isn't it? :P

Well done on the challenge just watch the spelling!

You are completely right, hehehehehehe.

Thank you so much.

Julian Gutierrez
Julian Gutierrez
19,201 Points

You have a typo on the last line of your code.