-
Notifications
You must be signed in to change notification settings - Fork 70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Profile Lookup #2
Labels
Comments
the-vampiire
added
beginner
beginner challenges
free code camp
challenges sourced from free code camp
Hacktoberfest
labels
Oct 4, 2018
the-vampiire
added a commit
that referenced
this issue
Oct 5, 2018
2 Add pythonic solution and doctests
the-vampiire
added a commit
that referenced
this issue
Oct 11, 2018
Initial Solution for Issue #2: Profile Lookup
the-vampiire
pushed a commit
that referenced
this issue
Oct 5, 2019
Merged
the-vampiire
pushed a commit
that referenced
this issue
Oct 21, 2019
* Profile Lookup #2 Solution * Mutations * Valid Parenthesis * Delete valid-parenthesis_nikxtaco.py
the-vampiire
pushed a commit
that referenced
this issue
Oct 21, 2019
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Credit: Adapted from Free Code Camp
Challenge
We have a list of dictionaries representing different people in our
contacts
list.Complete the
look_up_profile()
function that takesname
and afield
as arguments included belowThe function should check if
name
is an actual contact's firstName and the givenfield
exists in that contact dictionary.If both are true, then return the "value" of that
field
.If
name
does not correspond to any contacts then return "No such contact"If the
field
does not correspond to any valid properties of a contact found to match name then return "No such property"starter code
The text was updated successfully, but these errors were encountered: