Answer:
The Spanish brought chickenpox, smallpox, measles, mumps, and rubella to the new world. These diseases killed 75% of the Native Americans. ... The advantages that the Spanish had over the Aztecs were 16 horses, guns, armor, formed alliances, and diseases, steel.
Explanation:
I hope this helped!
..................................................
Video game designer for sure
Answer:
The code is given below in Python with appropriate comments
Explanation:
# convert list to set
male_names = set(['Oliver','Declan','Henry'])
# get remove and add name from user
remove_name = input("Enter remove name: ")
add_name = input("Enter add name: ")
# remove name from set
male_names.remove(remove_name)
# add new name ij set
male_names.add(add_name)
# sort the set
a = sorted(male_names)
# print the set
print(a)