Answered step by step
Verified Expert Solution
Question
1 Approved Answer
original = ['variables', 'functions', 'append', 'index', 'loops', 'pop'] new_list = [] # Your Solution Here print(original) print(new_list) For this exercise we will be practicing sequence-type
original = ['variables', 'functions', 'append', 'index', 'loops', 'pop'] new_list = [] \# Your Solution Here print(original) print(new_list) For this exercise we will be practicing sequence-type methods and functions, e.g. len(), +,min(),max(),sum(), .index(), . count() height =[56,48,49,55,59,56,53,53,63,51,61,61,59,57,59,49,54,51,60,57] \# find and print the maximum height max_height =?? print(max_height) \# find and print the minimum height min_height =?? print(min_height) \# find and print the average height avg_height =?? print(avg_height) \# find and print the number of people with height 56 inches, count = ?? print(count) \# concatenate the following list height_2 to height and print height height_2 [56,54,53,53,54,61] \# Your Soiution Here \# hint: use + print(height)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started