listA = ['john', 'irene', ['brooks', 'tristan'], 'yukio']
listB = [1, 2, [3, 4], 5, [6]]
tristan == listA[2][1]
6 == listB[?][?]
Suzuki is a monk who climbs a large staircase to the monastery everyday as part of a ritual. Some days of the week he climbs more stairs than others depending on the number of students he must train during that day of the week. He is curious how many stairs he climbs over the course of a year and has gathered sample data points for each of the seven days of the week.
You must write a function called SuzukiStairs that receives a list containing data collected by Suzuki. The list consists of 7 sublists, one for each day of the week. The sublists will have different numbers of data points because Suzuki sometimes forgot to record data for a given day. For example:
[[23, 25, 32], [4, 2], [1, 1, 1, 3], [15, 18, 19], [2], [31], [11, 13, 9]]
To get the best estimate, first determine the average number of stairs for each day of the week from the sample data set. Next, add those averages together to the best estimate of the average stairs in a week. Finally, multiply the results by 52 to get the estimate for the number of stairs Suzuki will climb in an entire year.
favorite_languages = {
'john': 'C',
'irene': 'Python',
'yukio': 'Python',
'charles': 'JS',
}
Use a dictionary to store information about a person you know. Store their first name, last name, age, and the city in which they live. You should have keys such as first_name, last_name, age, and city. Print each piece of information stored in your dictionary
https://www.surveymonkey.com/r/C8Y8TYT