strip()
여백 삭제
strip_test = ' test '
test = strip_test.strip()
print(test) #test
ord()
유니코드 출력
ord_test = '홍길동'
test = ord(ord_test)
print(test) #54861 44600 46041
'Python > Python__works' 카테고리의 다른 글
dict comprehension (0) | 2019.05.13 |
---|---|
지능형 리스트, list comprehension (0) | 2019.05.13 |
리스트 초기화 (0) | 2019.05.09 |
python dynamic import (0) | 2019.05.03 |
virtualenv (0) | 2019.03.20 |