파이썬,Python

Difference between r1.2 and the current

@@ -1,17 +1,16 @@
<<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
{
PyOpenGL

Ggl:PyOpenGL
PyOpenGL
} 
[[PyGame]] =,PyGame =,PyGame . PyGame
{
PyGame
 
Ggl:PyGame
PyGame
}
} Naver:PyOpenGL Ggl:PyOpenGL

= GIL =
REL: { [[스레드,thread]] [[concurrency]] > [[Python_concurrency]] ....}
@@ -31,7 +30,84 @@
Bing:"Global Interpreter Lock"
Ggl:"Global Interpreter Lock"

= Python GUI library =
[[Python_GUI_library]]
Python GUI libraries
 
// from WpEn:Tkinter 에 따르면 다음과 같은 것들이 있다
Tkinter
https://en.wikipedia.org/wiki/Tkinter
Kivy
[[WpEn:Kivy_(framework)]] = https://en.wikipedia.org/wiki/Kivy_(framework)
Pygame
https://en.wikipedia.org/wiki/Pygame
[[PyGame]] =,PyGame =,PyGame . PyGame ??
{
PyGame
 
Ggl:PyGame
PyGame
}
Pyglet
https://en.wikipedia.org/wiki/Pyglet
PyGObject
https://en.wikipedia.org/wiki/PyGObject
PyQt
https://en.wikipedia.org/wiki/PyQt
PySide
https://en.wikipedia.org/wiki/PySide
wxPython
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

----
Wikiadmin
Srch:파이썬 Srch:Python
Up: [[프로그래밍언어,programming_language]]




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]