Answer:
The answer is below
Explanation:
There are cases where the use of a NULL value would be appropriate in a computer programming situation. These cases can be summarily described below:
The first case is in a situation where the value of the attribute of a certain element is known to exist, but the value can not be found
The second case is in a situation where the value of the attribute of a certain element is not known whether it exists or not.
it is A the hardware im pretty sure but dont put my answer in im not completley sure
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)
What game ? I’m not sure what ur trying to ask