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

stephan de grove
PLUS
stephan de grove
Courses Plus Student 564 Points

im stuck with this exercice. Everything work fine on mine terminal but i keep having this message.

"oops its look like task one in no longer passing" Probleme is everything is fine....

delete.py
current_count = 14
planned = 5
upcoming_releases = 2

del planned
total = current_count + upcoming_release

3 Answers

Steven Parker
Steven Parker
229,744 Points

Well, it's not quite fine. You wrote "upcoming_release" (singular) instead of "upcoming_releases".

stephan de grove
PLUS
stephan de grove
Courses Plus Student 564 Points

I tried a few answer before asking for help, you may be right but the message is kind of confusing.

Steven Parker
Steven Parker
229,744 Points

I agree about the message. You'll find that any kind of syntax error will cause the re-validation of previous task(s) to fail.