Answer:
def func1(x):
return (x-32)*(5/9)
def func2(x):
return (x/2.237)
def main():
x = ""
while x != "x":
choice = input("Enter 1 to convert Fahrenheit temperature to Celsius\n"
"Enter 2 to convert speed from miles per hour to meters per second: ")
if choice == "1":
temp = input("please enter temperature in farenheit: ")
print(func1(float(temp))," degrees celcius.")
elif choice == "2":
speed = input("please enter speed in miles per hour: ")
print(func2(float(speed))," meters per second")
else:
print("error... enter value again...")
x = input("enter x to exit, y to continue")
if __name__ == "__main__":
main()
Explanation:
two function are defines func1 for converting temperature from ferenheit to celcius and func2 to convert speed from miles per hour to meters per second.
Objective reporting is reporting that separates facts and opinion.
Trump. Getty/ Sara D. ...
David Bowie. Jo Hale/ Getty Images. ...
Olympics. David Ramos/Getty Images. ...
Slither.io. Slither.io. ...
Pokémon Go. Reuters. ...
Hurricane Matthew. Joe Raedle/Getty Images. ...
Prince. Jonathan Daniel/Getty Images. ...
Powerball. Justin Sullivan/Getty Images. It was a year of massive, million-dollar Powerball drawings.
Answer:
Ask to the client all the information about the problem and try to solve it by phone.
If its no possible to solve it by phone, then recall all the information about the problem, so the personal doing the on-site supports can pre-diagnose the problem and give an opportunity solution.
The first and third option are actually tuples, not lists. Tuples and lists are identical except for the fact that you cannot change the elements in a tuple but you can in a list. The last option is incorrect because there is no equal sign that assigns those numbers to the variable name list5.
The only option that makes sense is option 2, list2