파이썬,Python

Difference between r1.8 and the current

@@ -73,8 +73,24 @@
Ggl:"Python types"

== Python typing module ==
pagename Python_typing ?
https://docs.python.org/ko/3/library/typing.html
 
MKL
[[type_annotation]]
[[type_hint]] / [[type_hinting]]?
 
Union
여러 type이 무방할 때.
Callable
Any
 
...
Ggl:"Python typing module"

 
 
== slice ==
[[슬라이스,slice]]
명시되지 않은 걸 None으로 표현함.
@@ -84,7 +100,7 @@
arr[s]
}}}
{{{
a[::-1]
arr[::-1]
}}}

----



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]