66,73 73-66=7
13,21 21-13=8
10,20 20-10=10
the missing no. is 9 so
52+9=61.
the pattern is
66,73,13,21,52,61,10,20
Answer:
Explanation:
how much something had in each month in this graph
Answer:
Explanation:
The following Python code asks the user for inputs for the name to remove and add in the set. It then tries to remove the given name from the list. If it fails it prints out to the user saying that the name does not exist. If it does exist then it removes the name and adds the new name. Finally it prints out the current list of names.
male_names = {'oliver', 'Declan', 'Henry'}
name_to_remove = input("Enter name to remove: ")
name_to_add = input("Enter name to add: ")
try:
male_names.remove(name_to_remove)
male_names.add(name_to_add)
except:
print("Name that you are trying to remove does not exist")
print("List of Names: ")
print(male_names)
Answer:
controls, code, protect, and add-ins!
Explanation:
edge 2021