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

Mikkel Thagesen
Mikkel Thagesen
2,025 Points

When i try to finish task 2 i get this message "it looks like Task 1 is no longer passing" even though task 1 is correct

Everytime i try to finish task 2 it says that it looks like task 1 is no longer passing. When i go back to task 1 it says its correct. What should i do??

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

del planned
current_count + upcoming_releases = total

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi Mikkel! The reason you are receiving the "Task One is no longer passing" is because you've introduced a syntax error into your code and it can no longer be compiled. The variable you're assigning a value to should be on the left side of the equals and the values to be assigned go on the right side of the equals. Take a look:

difference = x - y

Give it another shot with these hints in mind, but let me know if you're still stuck! :sparkles: