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
<span>The character to the right of the cursor is deleted. </span>
Answer:
Almost 80 percent of websites are mobile friendly
Explanation:
Answer:
12/22
Explanation:
As there are 22 apples in total and 12 green it is 12/22.
Answer:
1.The high level language are closer to human language the instruction written in this language are similar to English like words and statements
2. It is easy to understand
3. It is easy to modify
4. User friendly
5. Standarized syntax
6. Deep hardware knowledge is not required for using this.
7. Mechine indepence
8. In this language the error are easily located.
9. The program written in this language are called source code.
10. The program written in this language are shorter in size than low level language.