336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
파이썬 3.2 때부터 바꼈다고함
신경안써도 된다고하는데...
stackoverflow에 이런 답변이
When you run a program in python, the interpreter compiles it to bytecode first (this is an oversimplification) and stores it in the __pycache__
folder. If you look in there you will find a bunch of files sharing the names of the .py files in your project's folder, only their extentions will be either .pyc or .pyo. These are bytecode-compiled and optimized bytecode-compiled versions of your program's files, respectively.
'프로그래밍 > 파이썬' 카테고리의 다른 글
python에서 한글 주소 인코딩 (0) | 2013.10.07 |
---|---|
python에서 beautifulsoup 사용하기 - html 파싱을 위해 (0) | 2013.10.05 |
python 에서 BeautifulSoup4 사용하기 (0) | 2013.10.05 |
python은 html파서 어떤것을 사용해야 할까? (0) | 2013.10.02 |
pyhon 이클립스와 안드로이드 겸용으로 사용후... (0) | 2013.10.01 |