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

2.2计算圆柱体的体积.py

时间:2018-04-22 18:07:56      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:col   ==   tput   eval   print   NPU   ted   pre   creat   

# -*- coding: utf-8 -*-
"""
Created on Sun Apr 22 15:55:56 2018

@author: MyPC
"""

def main():
    ‘‘‘
    计算圆柱体的体积.
    
    公式:
    area = radius * radius * π
    volume = area * length
    input:radius,length  
    output:volume
    ‘‘‘
    PI=3.1415926
    radius, length = eval(input("input radius, length:"))
    area = radius * radius * PI
    volume = area * length
    print("The volume is %6.2f :"%(volume))
    
    
if __name__ == "__main__":
    main()

 

2.2计算圆柱体的体积.py

标签:col   ==   tput   eval   print   NPU   ted   pre   creat   

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

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