python中溫度單位轉(zhuǎn)換的實(shí)例方法
溫度有攝氏度和華氏度兩個(gè)單位,我們通常使用的是攝氏度,對(duì)于轉(zhuǎn)換成華氏度,很多小伙伴記不住公式。作為萬(wàn)能的計(jì)算機(jī),它是可以幫助我們解決溫度單位轉(zhuǎn)換的問(wèn)題。本文主要演示python中進(jìn)行溫度單位轉(zhuǎn)換的代碼過(guò)程,具體請(qǐng)看本文。
一、問(wèn)題溫度有攝氏度(Celsius)和華氏度(Fabrenheit)兩個(gè)不同的單位。攝氏度0度為結(jié)冰點(diǎn),沸點(diǎn)為100度;華氏度以32度為冰點(diǎn),以212度為沸點(diǎn)。一般來(lái)說(shuō),中國(guó)采用攝氏度,美國(guó)采用華氏度。
兩者之間的轉(zhuǎn)換公式為:攝氏度=(華氏度-32)/1.8、華氏度=攝氏度*1.8+32。
二、代碼輸入
#定義一個(gè)函數(shù)獲取帶符號(hào)的溫度值。def tempstr(): while True: temp=input(’請(qǐng)輸入帶有符號(hào)[C代表攝氏度,F(xiàn)代表華氏度]的溫度數(shù)值:’) if temp[-1] in [’c’,’C’,’f’,’F’]: return temp else: #如果輸入的溫度值沒(méi)有帶有符號(hào),會(huì)提示輸入錯(cuò)誤并被要求重新輸入。 print(’輸入錯(cuò)誤,請(qǐng)輸入帶有符號(hào)的溫度數(shù)值’) print(’-’*20)
處理輸出
#定義一個(gè)函數(shù)獲取帶符號(hào)的溫度值。def tempstr(): while True: temp=input(’請(qǐng)輸入帶有符號(hào)[C代表攝氏度,F(xiàn)代表華氏度]的溫度數(shù)值:’) if temp[-1] in [’c’,’C’,’f’,’F’]: return temp else: #如果輸入的溫度值沒(méi)有帶有符號(hào),會(huì)提示輸入錯(cuò)誤并被要求重新輸入。 print(’輸入錯(cuò)誤,請(qǐng)輸入帶有符號(hào)的溫度數(shù)值’) print(’-’*20)
總體代碼
def tempstr(): while True: temp=input(’請(qǐng)輸入帶有符號(hào)[C代表攝氏度,F(xiàn)代表華氏度]的溫度數(shù)值:’) if temp[-1] in [’c’,’C’,’f’,’F’]: return temp else: print(’輸入錯(cuò)誤,請(qǐng)輸入帶有符號(hào)的溫度數(shù)值’) print(’-’*20)def progress(temp): if temp[-1] in [’F’,’f’]: output=(eval(temp[:-1])-32)/1.8 print(’溫度轉(zhuǎn)換為攝氏度為{:.2f}C’.format(output)) else: output=eval(temp[:-1])*1.8+32 print(’溫度轉(zhuǎn)換為華氏度為{:.2f}F’.format(output))temp=tempstr()progress(temp)
溫度單位轉(zhuǎn)換實(shí)例擴(kuò)展:
module:temp
def temp_f_to_c(f): return (f - 32) * (5 / 9)def temp_c_to_f(c): return (c * 9 / 5) + 32def main(): print(temp_c_to_f(100))if __name__ == ’__main__’: main()
main function:
import temps def convert_temp_system(temp, temp_system): if temp_system == ’c’: new_temp = temps.temp_c_to_f(temp) else: new_temp = temps.temp_f_to_c(temp) return new_temp def print_temp_message(original_temp, new_temp, system): if system == ’f’: print(original_temp, ’degrees F converted to C is ’, new_temp) else: print(original_temp, ’degrees C converted to F is ’, new_temp) def main(): temp = float(input(’Enter the temperature: ’)) system = input(’F or C: ’) converted_temp = convert_temp_system(temp, system) print_temp_message(temp, converted_temp, system) if __name__ == ’__main__’: main()
到此這篇關(guān)于python中溫度單位轉(zhuǎn)換的實(shí)例方法的文章就介紹到這了,更多相關(guān)python中溫度單位如何轉(zhuǎn)換內(nèi)容請(qǐng)搜索好吧啦網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持好吧啦網(wǎng)!
相關(guān)文章:
1. php使用正則驗(yàn)證密碼字段的復(fù)雜強(qiáng)度原理詳細(xì)講解 原創(chuàng)2. Jsp+Servlet實(shí)現(xiàn)文件上傳下載 文件列表展示(二)3. XML在語(yǔ)音合成中的應(yīng)用4. Jsp servlet驗(yàn)證碼工具類(lèi)分享5. 基于javaweb+jsp實(shí)現(xiàn)企業(yè)車(chē)輛管理系統(tǒng)6. jscript與vbscript 操作XML元素屬性的代碼7. 基于PHP做個(gè)圖片防盜鏈8. ASP.NET MVC使用Boostrap實(shí)現(xiàn)產(chǎn)品展示、查詢(xún)、排序、分頁(yè)9. ASP將數(shù)字轉(zhuǎn)中文數(shù)字(大寫(xiě)金額)的函數(shù)10. asp.net core 認(rèn)證和授權(quán)實(shí)例詳解
