Answer:
Replace text as you type.
Explanation:
Replace text as you type is the Autocorrect option that enables you to add and delete words that do not follow abbreviation rules. This tool is available under the PROOFING tab. For example, if you use a long phrase frequently, simply add it to the replace text as you type. For instance, if you type your address frequently, add 34 Willoughby Street, London, and abbreviate it to 34WS and it was replace it to the long phrase as you type 34WS.
Answer:
True but it might be false but i think is true
Answer:
mylist = [ ]
for i in range(7):
mylist.append (int(input("Enter the number of bugs for each day ")))
print(mylist)
print("The highest number of bugs is ")
print(max((mylist)))
Explanation:
- Create and Initialize an empty (mylist)
- Using the .append method, we request and add the bugs for each day into the list
- print out the list
- Use the max function to find the highest number of bugs in the list and print it out
Incorrect data can lead to unexpected program execution results. Data entry errors can be reduced by only accepting valid input, e.g., if a number must be entered, alphabetic characters are ignored. After data validation, error messages can be prompted to the user, requiring him to enter the data again.
You need to get a certain amount of questions