python实现简单温度转换的方法


Posted in Python onMarch 13, 2015

本文实例讲述了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 Convertor\n\n"+\

        "1. Celsius to Fahrenheit\n"+\

        "2. Celsius to Kelvin\n"+\

        "3. Fahrenheit to Celsius\n"+\

        "4. Fahrenheit to Kelvin\n"+\

        "5. Kelvin to Celsius\n"+\

            "6. Kelvin to Fahrenheit\n"+\

        "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 again\n"

        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 again\n"

if __name__ == "__main__":

    main()

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

Python 相关文章推荐
python 布尔操作实现代码
Mar 23 Python
python计算最小优先级队列代码分享
Dec 18 Python
简单介绍Python中利用生成器实现的并发编程
May 04 Python
在Django框架中编写Contact表单的教程
Jul 17 Python
深入理解Python中命名空间的查找规则LEGB
Aug 06 Python
python开发之字符串string操作方法实例详解
Nov 12 Python
python opencv 图像尺寸变换方法
Apr 02 Python
在Windows中设置Python环境变量的实例讲解
Apr 28 Python
简单了解python高阶函数map/reduce
Jun 28 Python
python中 * 的用法详解
Jul 10 Python
python 链接sqlserver 写接口实例
Mar 11 Python
Python可视化神器pyecharts之绘制箱形图
Jul 07 Python
python实现简单socket程序在两台电脑之间传输消息的方法
Mar 13 #Python
Python比较两个图片相似度的方法
Mar 13 #Python
python通过urllib2获取带有中文参数url内容的方法
Mar 13 #Python
python将MongoDB里的ObjectId转换为时间戳的方法
Mar 13 #Python
python通过正则查找微博@(at)用户的方法
Mar 13 #Python
python使用chardet判断字符串编码的方法
Mar 13 #Python
python根据时间生成mongodb的ObjectId的方法
Mar 13 #Python
You might like
php 函数使用方法与函数定义方法
2010/05/09 PHP
smarty实现多级分类的方法
2014/12/05 PHP
thinkPHP模板中函数的使用方法示例
2016/11/30 PHP
Laravel 自动生成验证的实例讲解:login / logout
2019/10/14 PHP
laravel 解决paginate查询多个字段报错的问题
2019/10/22 PHP
js 对小数加法精度处理示例说明
2013/12/27 Javascript
Node.js中的事件驱动编程详解
2014/08/16 Javascript
thinkphp 表名 大小写 窍门
2015/02/01 Javascript
在JavaScript中处理数组之reverse()方法的使用
2015/06/09 Javascript
jQuery实现购物车表单自动结算效果实例
2015/08/10 Javascript
jquery简单实现带渐显效果的选项卡菜单代码
2015/09/01 Javascript
Javascript中的arguments对象
2016/06/20 Javascript
js仿腾讯QQ的web登陆界面
2016/08/19 Javascript
详解如何使用webpack打包Vue工程
2017/05/27 Javascript
js封装成插件_Canvas统计图插件编写实例
2017/09/12 Javascript
js数组常用最重要的方法
2018/02/04 Javascript
vue-cli项目根据线上环境分别打出测试包和生产包
2018/05/23 Javascript
vue2.0实现音乐/视频播放进度条组件
2018/06/06 Javascript
es6中比较有用的7个技巧小结
2019/07/12 Javascript
vue使用微信扫一扫功能的实现代码
2020/04/11 Javascript
ant-design-vue按需加载的坑的解决
2020/05/14 Javascript
[37:21]完美世界DOTA2联赛PWL S2 Inki vs Magma 第二场 11.22
2020/11/24 DOTA
Python读取网页内容的方法
2015/07/30 Python
python将pandas datarame保存为txt文件的实例
2019/02/12 Python
django项目简单调取百度翻译接口的方法
2019/08/06 Python
基于K.image_data_format() == 'channels_first' 的理解
2020/06/29 Python
Python 制作查询商品历史价格的小工具
2020/10/20 Python
详解canvas绘图时遇到的跨域问题
2018/03/22 HTML / CSS
英国在线泳装店:Simply Swim
2019/05/05 全球购物
WEB控件可以激发服务端事件,请谈谈服务端事件是怎么发生并解释其原理?自动传回是什么?为什么要使用自动传回?
2012/02/21 面试题
C#面试常见问题
2013/02/25 面试题
应届生会计电算化求职信
2013/10/03 职场文书
夜不归宿检讨书
2014/02/25 职场文书
党的群众路线教育实践活动个人整改方案
2014/09/21 职场文书
管理者们如何制定2019年的工作计划?
2019/07/01 职场文书
Django利用AJAX技术实现博文实时搜索
2021/05/06 Python