码迷,mamicode.com
首页 > 其他好文 > 详细

2.1摄氏温度转为华氏温度.py

时间:2018-04-22 18:09:34      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:creat   apr   def   style   author   div   main   odi   公式   

# -*- coding: utf-8 -*-
"""
Created on Sun Apr 22 14:57:48 2018

@author: MyPC
"""
def main():
    ‘‘‘
    摄氏温度转为华氏温度.
    
    公式:fathrenheiit=(9 / 5) * celsius + 32
    input:celsius
    output:fathrenheiit
    ‘‘‘
    
    celsius = eval(input("input Celsius:"))
    fahrenheit=(9 / 5) * celsius + 32
    print("%4.2f Celsius is %5.2f fahrenheit"%(celsius,fahrenheit))
    
    
if __name__ == "__main__":
    main()
    
    

    

 

2.1摄氏温度转为华氏温度.py

标签:creat   apr   def   style   author   div   main   odi   公式   

原文地址:https://www.cnblogs.com/Wang-Y/p/8908292.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!