Computer Science, asked by reet1765, 4 months ago

5. The science teacher has asked you to create a program that will convert a given
Fahrenheit value to Celsius. Can you do the same task?
Hint: Celsius = 5/9 (Fahrenheit - 32)

Answers

Answered by riaj23972
0

Answer:

sorry to say I don't know this answer

Explanation:

hard try become you are a genius

Answered by tejanadh2509
2

Answer:

This script converts temperature between Fahrenheit to Celsius. To create a python converter for celsius and fahrenheit, you first have to find out which formula to use.

Fahrenheit to Celsius formula:

You are here: Home / Code Snippets / Python Code: Celsius and Fahrenheit Converter

Python Code: Celsius and Fahrenheit Converter

Last Updated: August 27, 2020

Overview

This script converts temperature between Fahrenheit to Celsius. To create a python converter for celsius and fahrenheit, you first have to find out which formula to use.

Fahrenheit to Celsius formula:

Advertisement

(°F – 32) x 5/9 = °C or in plain english, First subtract 32, then multiply by 5, then divide by 9.

Celsius to Fahrenheit formula:

(°C × 9/5) + 32 = °F or in plain English, Multiple by 9, then divide by 5, then add 32.

Convert Fahrenheit to Celsius

Primis Player Placeholder

Explanation:

Similar questions