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 Using Databases in Python Meet Peewee First Queries

Pratham Patel
Pratham Patel
4,976 Points

Can i get help on this code challenge

I am on challenge 4 and cant find a answer

queries.py
from models import Challenge
all_challenges = Challenge.select()
challenge = Challenge.create(
  language = "Ruby",
  name = "Booleans"
)
sorted_challenges = challenge.select().order_by(Student.points.asce())

1 Answer

Ryan S
Ryan S
27,276 Points

Hi Pratham,

In the last task you are asked to sort the challenges by the "steps" attribute on the Challenge model. It does not mention a Student model, or points.

Pratham Patel
Pratham Patel
4,976 Points

sorted_challenges = Challenge.select().order_by(Challenge.all_challenges.asce()) I wrote that as my new code it still does not work. I dont see where i went wrong

Ryan S
Ryan S
27,276 Points

As I mentioned above, the last task is asking you to sort by the "steps" attribute on the Challenge model. You will need to include that in your order_by() method. This would be accessed in a similar way to how you attempted the Student.points part in your original post.

sorted_challenges = Challenge.select().order_by(Challenge.steps)

The default is in ascending order so you don't need to specify that.