티스토리 뷰


atoi() / itoa()

http://code.activestate.com/recipes/496969/

가장 간단하게
>>> "hello".encode("hex")
'68656c6c6f'
>>> "68656c6c6f".decode("hex")
'hello'
>>>

이러면 된다.
숫자를 string (문자열) 로 변환하는 간단한 방법 - `(backtick)을 이용한다.
아래처럼 숫자 변수 주위에 `(backtick) 로 감싸면, 숫자가 string으로 변환 된다.
추가로 어떤 string 이 가장 빠른지에 대한 참고자료 이다. http://skymind.com/~ocrow/python_string/

a = "";
for num in xrange(0, 10):
  a += `num`;

'a'+1
c 에서 많이 쓰이는 

'a' + 1

를 python 에서 사용하려면 아래함수를 이용하자.


>>> import string >>> string.lowercase.index('b') 1 >>> string.lowercase.index('a') 0 >>> string.lowercase[0] 'a' >>>


또는

ord() / chr() 를 이용하면 된다.

>>> ord('a') 97 >>> ord('a')+1 98 >>> chr(ord('a')+1) 'b'

http://stackoverflow.com/questions/5927149/get-character-position-in-alphabet

http://stackoverflow.com/questions/2156892/python-how-can-i-increment-a-char



댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2024/12   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31
글 보관함