Here's all the right answers.
1. What is the main purpose of a graphic organizer?
Answer: B
2. Which of the following website publishers would be considered an authoritative source about the cultures of ancient Mesopotamia?
Answer: C
3. Which of the following websites is the least biased?
Answer: D
4. Which of the following is true about graphic organizers?
Answer: A
5. Of the following websites, the least trustworthy is one that...
Answer: C
Answer:
Explanation:
print('Enter 10 temperatures')
sum = 0
for i in range(10):
S = float(input())
sum = sum + S
print('The sum is: ',sum)
First, we print a comment asking the ten temperatures, then we declare the variable sum = 0.
We create a for cycle where the user must enter the temperatures, 10 in this case, then we must do the operation, summing the 10 numbers.
In the last step, we print the result with the variable sum.