Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

1. Start with the following program which creates a list of temperatures in degr

ID: 3903409 • Letter: 1

Question

1. Start with the following program which creates a list of temperatures in degrees Celcius. Write a for loop that prints out the Fahrenheit equivalent of each of these temperatures. Hint: feel free to look up the formula online if you don't know it temperatures [15.0, 12.0, 11.e, 21.0, 25.0, 24.0, 31.0] # TODO: convert these temperatures to Fahrenheit and print the resulting temperatures: i.e # 59.0 # 53.6 # 51.8 2. Write a program that can be used to calculate an object's momentum. It should ask the user to provide the mass and the velocity, and then compute and print out the momentum. Hint: momentum mass velocity. # TODO get a mass # TODO get a velocity # TODO print out the momentum : i.e. "the momentum is: " 3. The Leibniz method of approximating the value of pi uses the following mathematical series: 1/3

Explanation / Answer

As per Chegg guidelines, if a question of the user contains more than one question then the expert need to answer the first question. As I need to follow the guidelines I am answering the first question. Hope you read the guidelines and understand. :)

Program:1

temperatures = [15.0, 12.0, 11.0, 21.0, 25.0, 24.0, 31.0]
for temp in temperatures:
Fahrenheit = 9.0/5.0 * temp + 32
print(Fahrenheit)

Program 2:

mass = float(input("Enter the mass: "))
velocity = float(input("Enter the velocity: "))
momentum = mass * velcoity
print("Momentum =", momentum)

**Comment for any further queries.