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

Python练习2->Get Abs

时间:2015-05-30 13:28:03      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

1 def my_abs(x):
2     if x>=0:
3         return x
4     else:
5         return -x
6 
7 z=int(raw_input("Please Input The Number You Want To Get Abs:  "))
8 y=my_abs(z)
9 print y

 

Python练习2->Get Abs

标签:

原文地址:http://www.cnblogs.com/Curious-Python/p/4540141.html

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