-
참고
Python예제: http://infos.tistory.com/1982
cmp(a, b)
cmp (a, b) 조건
결과
a < b
-1
a = b
0
a > b
1
ex: cmp(1,2) #리턴 값 -1
list1, list2 = [123, 'xyz'], [456, 'abc']
print cmp(list1, list2) #-1
print cmp(list2, list1) #1
list3 = list2 + [786];
print cmp(list2, list3) #-1
'Python' 카테고리의 다른 글
Python예제 - string, join, split, find, startswith, endswith, strip, format (0) 2018.01.31 Python예제 - string.digits string.ascii_letters (0) 2018.01.31 Python예제 - 문자열 속 특수문자 변환 (0) 2018.01.31 Python예제 - ord, hex, chr, unichr (0) 2018.01.31 Python예제 - 리스트 (0) 2018.01.30 Python Re - 정규식, RegularExpression (0) 2018.01.30 Python예제 - 문자와 아스키코드 변환 (0) 2018.01.30 Python예제 - chardet.detect 캐릭터셋 인코딩 확인 (0) 2018.01.30