I am.
Explanation
Characters
I would love to help. but if you could text my number i could help more. i have a chromebook
Loops are frequently used to<u> validate data </u>that is, to make sure it is meaningful and useful.
<h3>What are common blunders made by programmers in coding loops?</h3>
Forgetting to initialize and alter the loop control variable are common mistakes that programmers occasionally make. One set of instructions operates on multiple, separate sets of data. Initialized before joining a while loop.
<h3>What are the three steps that should occur in every loop?</h3>
- Provide a starting value for the variable that will contain the loop.
- Test the loop control variable to decide whether the loop body executes.
- Alter the loop rule variable.
To learn more about Loops , refer
brainly.com/question/19344465
#SPJ4
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)
I believe the answer is D)system area <span />