Artificial intelligence can be used to help science students research and verify their research. It is also a very interesting topic to study in general.
Hope that helped!!! k
A table maker makes visually appealing tables such as line graphs, bar graphs, venn diagrams on a spreadsheet software.
The answer is B. Page
Page give the user a predicted display on how the text and graphics will look like when it's transformed into printed format.
Not only that, it also serve as a working space for destkop publisher in designing the relevant document.
f = open("numbers.txt", "r")
lst = [int(x) for x in f.read().splitlines()]
sum = 0
for x in lst:
----sum += x
I had to add the four dashes to maintain the structure of my code. You can replace them with spaces. Also, I wouldnt recommend having a variable named sum because python has a built in function named sum. You can test this code by putting print(sum) at the end of the code.