파이썬,Python

Difference between r1.9 and the current

@@ -103,6 +103,10 @@
arr[::-1]
}}}

= bmks ko =
Pythonic way // cublr's warehouse
https://w.cublr.com/programming/python/pythonicway/
----
Twins
https://librewiki.net/wiki/Python
@@ -111,3 +115,5 @@
Wikiadmin
Srch:파이썬 Srch:Python
Up: [[프로그래밍언어,programming_language]]
 
MKL [[심파이,SymPy]]




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]