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 trialGeorge Zabel
5,194 PointsWhat am I doing wrong? CRUD search
Can someone give me a hint and maybe clear up what I'm trying to do this challenge? Unsure what this is asking me exactly
from models import Challenge
def create_challenge(name, language, steps=1):
Challenge.create(name=name,
language=language,
steps=steps)
def search_challenges(name, language):
return Challenge.select().where(Challenge.name == name, Challenge.language == language)
1 Answer
Cory Madden
7,120 Pointsdef search_challenges(name, language):
return Challenge.select().where(Challenge.name == name, Challenge.language == language)
Needs to be:
def search_challenges(name, language):
return Challenge.select().where(Challenge.name.contains(name), Challenge.language == language)
Needs to be Challenge.name.contains(name). The directions say "name field contains name argument." I had to reread them a couple times to figure out why it wasn't passing.
QUYEN NGUYEN
5,100 PointsQUYEN NGUYEN
5,100 Pointscan you help me understand why------ Challenge.language.contains(language)------ wont' work for the second part ??