4 Following Code Block Defines Nested Dictionary Object Named Mydict Contains Age Height T Q43878681

Please do in *PYTHON*
4) The following code block defines a nested dictionary object named my_dict that contains the age and height of three individuals (Alice, Bob, and Eve). Write a for loop that prints the age and height for each individual using the format “NAME is X years old and Y inches tall.” my_dict = {‘Alice’:{‘Age’: 32, ‘Height (in)’: 64}, ‘Bob’: {‘Age’: 40, ‘Height (in)’: 70}, ‘Eve’: {‘Age’: 20, ‘Height (in)’: 68}} Show transcribed image text 4) The following code block defines a nested dictionary object named my_dict that contains the age and height of three individuals (Alice, Bob, and Eve). Write a for loop that prints the age and height for each individual using the format “NAME is X years old and Y inches tall.” my_dict = {‘Alice’:{‘Age’: 32, ‘Height (in)’: 64}, ‘Bob’: {‘Age’: 40, ‘Height (in)’: 70}, ‘Eve’: {‘Age’: 20, ‘Height (in)’: 68}}
Expert Answer
Answer to 4) The following code block defines a nested dictionary object named my_dict that contains the age and height of three i…
OR