码迷,mamicode.com
首页 > 编程语言 > 详细

python入门1

时间:2016-06-07 01:14:23      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:

1、入门小程序:计算圆面积和圆周长。

技术分享

1 import math
2 
3 if __name__ == __main__:
4     input = raw_input("请输入圆半径:");
5     inputInt = int(input)
6     yzc = 2*math.pi*inputInt    
7     area = math.pi*(inputInt**2)
8     print yzc , "  " ,area

 

python入门1

标签:

原文地址:http://www.cnblogs.com/lishupeng/p/5565583.html

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