Answer:
The time in which the alarm clock will sound
Explanation: Hope this helped please give me brainliest
Commenting. When someone comments of a blog the blog's writer can comment back, to answer questions, etc.
Task view
I hope this helps you :)
Mac os is based on the UNIX operating system.
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.