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

"Important" notice on Challenge Task

I'm working on Python for beginners. I've seen the same, "Important" notice to the left of the "check work" button on all Challenge Tasks. What does this mean? Previously I've simply completed the task, clicked "check work", and moved on. Should I be following along in my workspace aka including these tasks in my workspace for practice as well?

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

del planned

1 Answer

Sam Dale
Sam Dale
6,136 Points

Oh no. All that the message: "Important: The code you write in each task should be added to the code written in the previous task." means is that if the coding challenge is broken down into three parts, when you do the third part, the second part should still work. <br>For example, if part 1 asks me to create a function named "my_func", and part 2 asks me to create a new function named "other_function", I should still have the code for "my_func" in the answer for part 2 even though it's not doing anything in part 2. Hope that helps!