파이썬,Python

Difference between r1.4 and the current

@@ -1,4 +1,9 @@
<<tableofcontents>>
= IDLE =
'''IDLE''' (short for '''Integrated Development and Learning Environment''')
default simple/minimal IDE. Tkinter로 만들어진?
https://en.wikipedia.org/wiki/IDLE
= PyOpenGL =
[[PyOpenGL]] =,PyOpenGL =,PyOpenGL . PyOpenGL
{
@@ -55,6 +60,49 @@
https://en.wikipedia.org/wiki/WxPython
... Ggl:"Python GUI libraries"

Rel
[[GUI프로그래밍,GUI_programming]] : curr at [[GUI,graphical_user_interface]]
 
= Python types =
Python_type =,Python_type =,Python_type . Python_type
'''Python type'''
 
[[파이썬,Python]]
[[타입,type]]
 
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으로 표현함.
다시말해 아래 둘은 같음
{{{
s = slice(None, None, -1)
arr[s]
}}}
{{{
arr[::-1]
}}}
----
Twins
https://librewiki.net/wiki/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]