Sign In
Ask Question
Computers & Technology
Mclean
6 January, 22:14
Edhesive 6.5 code practice question 4
+5
Answers (
2
)
Brady Hampton
6 January, 22:28
0
This question is incomplete. The complete question is given below:
Write a program that asks the user to enter ten temperatures and then finds the sum. The input temperatures should allow for decimal values.
Sample Run
Enter Temperature: 27.6
Enter Temperature: 29.5
Enter Temperature: 35
Enter Temperature: 45.5
Enter Temperature: 54
Enter Temperature: 64.4
Enter Temperature: 69
Enter Temperature: 68
Enter Temperature: 61.3
Enter Temperature: 50
Sum = 504.3
Answer:
# Program in Python
sum = 0.0
for i in range (0, 10):
t = float (input ("Enter the Temperature: "))
sum = sum + t
print ("Sum: {0:0.1f}". format (sum))
Explanation:
Initialize the sum variable to hold the sum of input temperatures. Iterate from 0 to 9, Get the input and compute the sum. Print the result by formatting the sum so that value is printed with precision to single decimal place.
Comment
Complaint
Link
Romeo Burke
6 January, 23:09
0
This requires summantion of numbers through s python program, and numbers are stored in a text file.
Explanation:
def sumnumbers ():
file1 = open ("numbers1. txt","w")
i=5
while i! = 0:
num=input ("Enter number")
file1. write (num)
file1. write ("/n")
i = i - 1
file1. close ()
file=open ("numbers1. txt", "r+")
number = 0
sum1 = 0
for number in file:
sum1 = sum1 + int (number)
print (sum1)
file1. close ()
sumnumbers ()
Comment
Complaint
Link
Know the Answer?
Answer
Not Sure About the Answer?
Get an answer to your question ✅
“Edhesive 6.5 code practice question 4 ...”
in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers
You Might be Interested in
What is the difference between word processing software and email? A. Email can provide 2D models of physical spaces, whereas word processing software animates those models. O B.
Answers (2)
Which of the following is a safe work practice to protect you from electrocution hazards?
Answers (1)
Write an if-else statement to describe an integer. Print "Positive even number" if isEven and is Positive are both true. Print "Positive number" if isEven is false and is Positive is true. Print "Not a positive number" otherwise. End with newline.
Answers (1)
Which occupation requires certification by the state?
Answers (1)
Which of the following real world events could be simulated using a queue A. restaurant reservation list B. all other amswers C. shared network printer D. bank line
Answers (1)
New Questions in Computers & Technology
What kind of heat we feel from the sun
Answers (2)
What is tail level? A. A volume control that adds more volume to the reverb sound as it decays B. A volume control that sets how close the reverb sound's amplitude is to the original sound C.
Answers (1)
Which type of communities handle recurring tasks in organization
Answers (1)
A collection of data elements. a-An Array b-A Cluster c-A Bundle d-A Local Variable
Answers (1)
Assume the existence of a Window class with a function getWidth that returns the width of the window. Define a derived class WindowWithBorder that contains a single additional integer instance variable named borderWidth, and has a constructor that
Answers (1)
Home
»
Computers & Technology
» Edhesive 6.5 code practice question 4
Sign In
Sign Up
Forgot Password?