Answer:
Check the explanation
Explanation:
10
5
3
21
2
-6
the output will be somthing like this:
2 21
You can then suppose that the list of integers will contain at least 2 values.
Answer:
well it game
Explanation:
its gamw because you have to be smart with word njbhjvkgv
Answer: Find answers in the attachments
Explanation:
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
Answer:
Version Control - Maintains the code log history and changes overtime.