파이썬,Python


1. IDLE

IDLE (short for Integrated Development and Learning Environment)
default simple/minimal IDE. Tkinter로 만들어진?
https://en.wikipedia.org/wiki/IDLE

2. PyOpenGL

PyOpenGL =,PyOpenGL =,PyOpenGL . PyOpenGL
{
PyOpenGL

PyOpenGL
} Naver:PyOpenGL Ggl:PyOpenGL

3. GIL


interpreter
lock
GIL
Global Interpreter Lock
전역 인터프리터|해석기 락|잠금|.....???


"Global Interpreter Lock"
"Python GIL"


5. Python types

Python_type =,Python_type =,Python_type . Python_type
Python type



5.1. Python typing module



Union
여러 type이 무방할 때.
Callable
Any





5.2. slice

슬라이스,slice
명시되지 않은 걸 None으로 표현함.
다시말해 아래 둘은 같음
s = slice(None, None, -1)
arr[s]
arr[::-1]