1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
from functools import reduce
#1 Capitalize all of the pet names and print the list
my_pets = ['sisi', 'bibi', 'titi', 'carla']
#2 Zip the 2 lists into a list of tuples, but sort the numbers from lowest to highest.
my_strings = ['a', 'b', 'c', 'd', 'e']
my_numbers = [5,4,3,2,1]
#3 Filter the scores that pass over 50%
scores = [73, 20, 65, 19, 76, 100, 88]
#4 Combine all of the numbers that are in a list on this file using reduce (my_numbers and scores). What is the total?