Four queations that need answered in Phyton code. Simple but I need the spaces c
ID: 3552751 • Letter: F
Question
Four queations that need answered in Phyton code. Simple but I need the spaces correct.
a) Define a function called convertTempC(). The function should have a parameter that will be used to accept temperatures in degrees Celsius. The function should return the converted temperature in degrees Fahrenheit. The formula is [ Fahrenheit = 9 / 5 * Celsius + 32 ].
Function Real convertTempC(Real celsius)
b) Define a function called convertTempF(). The function should have a parameter that will be used to accept temperatures in degrees Fahrenheit. The function should return the converted temperature in degrees Celsius. The formula is [ Celsius = 5 / 9 * Fahrenheit
Explanation / Answer
def c2f(t): return (t*9/5.0)+32 def c2k(t): return t+273.15 def f2c(t): return (t-32)*5.0/9 def f2k(t): return (t+459.67)*5.0/9 def k2c(t): return t-273.15 def k2f(t): return (t*9/5.0)-459.67 def main(): menu =
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.