2016-02-26 48 views
-6

我需要一個用戶輸入代碼在python 3.4中將攝氏度轉化爲華氏度。用戶輸入一個攝氏數字並變成一個farhenheit程度。Python 3.4攝氏度到華氏度

+1

首款谷歌的結果:HTTP://www.programiz .com/python-programming/examples/celsius-fahrenheit – intboolstring

+4

SO不是代碼編寫服務。我們很樂意爲您解決遇到的任何特定問題,但您至少需要嘗試一些方法,然後才能幫助您。 – Matthew

回答

0

你需要有一個輸入語句入手:

celsius = input("Enter degrees in Celsius') 

然後寫你的代碼轉換爲攝氏華氏:

Celsius -> Fahrenheit: 

Multiply by 9, then Divide by 5, then Add 32