Question: def alphabetize _ lists ( list 1 , list 2 ) : new _ list = _ _ _ # Initialize a new list. _

def alphabetize_lists(list1, list2):
new_list =___ # Initialize a new list.
___ # Combine the lists.
___ # Sort the combined lists.
new_list =___ # Assign the combined lists to the "new_list".
return new_list
Aniyahs_list =["Jacomo", "Emma", "Uli", "Nia", "Imani"]
Imanis_list =["Loik", "Gabriel", "Ahmed", "Soraya"]
print(alphabetize_lists(Aniyahs_list, Imanis_list))
# Should print: ['Ahmed', 'Emma', 'Gabriel', 'Imani', 'Jacomo', 'Loik', 'Nia', 'Soraya', 'Uli']

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!