Answer:
Explanation:
I think you can try logging out from your account. Try cancelling your subscription. Before you do that, reach out to Brainly support.
The answer to this blanks are black and visible
Answer: A. Help her distinguish between main topics and subtopics.
Explanation: APEX
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