반응형
Python 에서 C/C++ 의 singed short data type 구하기.
import ctypes ctypes.c_short(0xfc19) ctypes.c_short(0xfc19).value
>>> import ctypes >>> ctypes.c_short(0xfc19) c_short(-999) >>> ctypes.c_short(0xfc19).value # 부호있는 short -999 >>> ctypes.c_ushort(0xfc19) # 부호없는 short c_ushort(64537) >>> 0xfc19 64537
*** ctypes 참고 : http://python.net/crew/theller/ctypes/tutorial.html
반응형
'python' 카테고리의 다른 글
파일내용 hex dump 로 보기 (0) | 2014.04.25 |
---|---|
python으로 윈도우 terminal 명령어 실행하기 (0) | 2014.04.24 |
문자열 코드 실행 --- eval, exec, compile (0) | 2014.04.22 |
setuptools, easy_install, pip 설치하기 - windows (0) | 2014.04.19 |
원격접속 가능한 ipython notebook server 설정하기 - windows (0) | 2014.04.17 |