'Python'에 해당되는 글 12건

  1. 2011.05.10 [python] system endianness 출력
  2. 2008.06.28 파이썬 임베딩 예제
  3. 2008.04.16 [Python] UDP 서버 예제
  4. 2007.09.07 Python 키 입력 예제
Python2011. 5. 10. 00:11

 

(1) 참고로, synology 108j는 big endian 이고, 110j는 little endian 이다. (물론 cpu는 다름)
(2) 아래와 같은 one line 처리도 있다. (0 이면 big endian, 1 이면 little endian)
 

[출처] serverfault.com

 
반응형

'Python' 카테고리의 다른 글

Python Math (python for iphone/ipad)  (0) 2011.10.22
Pygoogle-chart  (0) 2011.08.12
파이썬 임베딩 예제  (0) 2008.06.28
[Python] UDP 서버 예제  (0) 2008.04.16
py2exe  (0) 2007.09.11
Posted by Jay Two
Python2008. 6. 28. 09:56

파이썬 임베딩 처리 예제
출처 : Python official document

호출하려는 파이썬 코드

$ call multiply multiply 3 2
Will compute 3 times 2
Result of call: 6
반응형

'Python' 카테고리의 다른 글

Pygoogle-chart  (0) 2011.08.12
[python] system endianness 출력  (0) 2011.05.10
[Python] UDP 서버 예제  (0) 2008.04.16
py2exe  (0) 2007.09.11
Python 키 입력 예제  (0) 2007.09.07
Posted by Jay Two
Python2008. 4. 16. 20:50

반응형

'Python' 카테고리의 다른 글

Pygoogle-chart  (0) 2011.08.12
[python] system endianness 출력  (0) 2011.05.10
파이썬 임베딩 예제  (0) 2008.06.28
py2exe  (0) 2007.09.11
Python 키 입력 예제  (0) 2007.09.07
Posted by Jay Two
Python2007. 9. 7. 13:34

# 키 입력 예제



#
# 짜증나는 일을 처리 하다가 파이썬 튜터리얼을 보면서 다시 마음을 새롭게 하는 중...
# 만화가는 낙서하면서 쉬고, 프로게이머는 PC방 가서 쉬기도 할까??

반응형

'Python' 카테고리의 다른 글

Pygoogle-chart  (0) 2011.08.12
[python] system endianness 출력  (0) 2011.05.10
파이썬 임베딩 예제  (0) 2008.06.28
[Python] UDP 서버 예제  (0) 2008.04.16
py2exe  (0) 2007.09.11
Posted by Jay Two