내장함수 - asb(x)
2015. 7. 16. 10:15ㆍIT관련
반응형
https://docs.python.org/2/library/functions.html?highlight=map#abs
abs(x)
숫자에 대한 절대값을 리턴한다.
숫자 이외의 데이터는 전부 에러 처리된다.
>>> abs(-1)
1
>>> abs(1)
1
>>> abs(-1.23)
1.23
>>> abs(range(0, 5))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: bad operand type for abs(): 'list'
>>> abs('a')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: bad operand type for abs(): 'str'
반응형
'IT관련' 카테고리의 다른 글
내장함수 - any(iterable) (0) | 2015.07.16 |
---|---|
내장함수 - all(iterable) (0) | 2015.07.16 |
str.join(iterable) (0) | 2015.07.16 |
Iterable (0) | 2015.07.16 |
파이썬 첼린지(Python Challenge) - connect the dots - 9 (0) | 2015.07.15 |