Course Content
Introduction to Python (dev copy)
Introduction to Python (dev copy)
Challenge: Creating Logging Function
Swipe to start coding
You've been provided with a dictionary named people_d
that holds data in the format: 'name': (age, height)
. Create a function named people_information
that accepts two parameters:
d
(intended to be a dictionary).name
(intended to be a key within the dictionary).
This function should display the following details (based on the data format in people_d
):
python
For example, given the name 'Alex'
, the output should read:
python
Solution
Thanks for your feedback!
Challenge: Creating Logging Function
Swipe to start coding
You've been provided with a dictionary named people_d
that holds data in the format: 'name': (age, height)
. Create a function named people_information
that accepts two parameters:
d
(intended to be a dictionary).name
(intended to be a key within the dictionary).
This function should display the following details (based on the data format in people_d
):
python
For example, given the name 'Alex'
, the output should read:
python
Solution
Thanks for your feedback!