手机
当前位置:查字典教程网 >脚本专栏 >python >python实现简单温度转换的方法
python实现简单温度转换的方法
摘要:本文实例讲述了python实现简单温度转换的方法。分享给大家供大家参考。具体分析如下:这是一段简单的python代码,用户转换不同单位的温度...

本文实例讲述了python实现简单温度转换的方法。分享给大家供大家参考。具体分析如下:

这是一段简单的python代码,用户转换不同单位的温度,适合初学者参考

复制代码 代码如下: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 get_user_input():

user_input = 0

while type(user_input) != type(1.0):

user_input = raw_input("Enter degrees to convert: ")

try:

user_input = float(user_input)

except:

print user_input + " is not a valid entry"

return user_input

def main():

menu = "nTemperature Convertornn"+

"1. Celsius to Fahrenheitn"+

"2. Celsius to Kelvinn"+

"3. Fahrenheit to Celsiusn"+

"4. Fahrenheit to Kelvinn"+

"5. Kelvin to Celsiusn"+

"6. Kelvin to Fahrenheitn"+

"7. Quit"

user_input = 0

while user_input != 7:

print menu

user_input = raw_input("Please enter a valid selection: ")

try:

user_input = int(user_input)

except:

print user_input + " is not a valid selction, please try againn"

if user_input == 1:

t = get_user_input()

print str(t) + " degree Celsius is " + str((c2f(t))) + " degree Fahrenheit"

elif user_input == 2:

t = get_user_input()

print str(t) + " degree Celsius is " + str((c2k(t))) + " degree Kelvin"

elif user_input == 3:

t = get_user_input()

print str(t) + " degree Fahrenheit is " + str((f2c(t))) + " degree Celsius"

elif user_input == 4:

t = get_user_input()

print str(t) + " degree Fahrenheit is " + str((f2K(t))) + " degree Kelvin"

elif user_input == 5:

t = get_user_input()

print str(t) + " degree Kelvin is " + str((k2c(t))) + " degree Celsius"

elif user_input == 6:

t = get_user_input()

print str(t) + " degree Kelvin is " + str((k2f(t))) + " degree Fahrenheit"

elif user_input == 7:

quit()

else:

print str(user_input) + " is not a valid selection, please try againn"

if __name__ == "__main__":

main()

希望本文所述对大家的Python程序设计有所帮助。

【python实现简单温度转换的方法】相关文章:

python 实现归并排序算法

python实现批量转换文件编码(批转换编码示例)

python判断windows隐藏文件的方法

python实现socket客户端和服务端简单示例

python实现哈希表

python字典多条件排序方法实例

Python学习笔记_数据排序方法

Python实现扫描指定目录下的子目录及文件的方法

python类型强制转换long to int的代码

python基础教程之lambda表达式使用方法

精品推荐
分类导航