[Day15] Python으로 GUI application을 만들어 보자.
파이썬으로 맨날 jupyter notebook에서 콘솔 방식으로만 작업을 했었는데, 이제 GUI가 있는 프로그램을 만드는 것을 배워봅시다.
Tkinter를 사용해서 그것이 가능하다고 하네요~
1. Python GUI Programming With Tkinter realpython.com/python-gui-tkinter/
Python GUI Programming With Tkinter – Real Python
In this article, you'll learn the basics of GUI programming with Tkinter, the de-facto Python GUI framework. Master GUI programming concepts such as widgets, geometry managers, and event handlers. Then, put it all together by building two applications: a t
realpython.com
2. 스티브 잡스가 제록스를 방문하지 않았더라면? m.blog.naver.com/sichomd/220612646856
스티브 잡스가 제록스를 방문하지 않았더라면?
좋은 아이디어는 예기치 못한 순간에 섬광 같은 통찰력(flash of insight)으로 올 때가 많다는 것은 이미 ...
blog.naver.com
(아이펠에서 미술학원 블로그까지 읽어보라고 할 줄은 몰랐었는데...)
3. UI/UX디자인? 하인즈 케첩으로 알아보자! kjchanga.com/blogPost/untitled-138
[경기광주 미술학원 창조의아침] UI/UX디자인? 하인즈 케첩으로 알아보자!
kjchanga.com
4. Tcl Tk www.tcl.tk/software/tcltk/
Tcl/Tk Software
There are several options available for obtaining Tcl/Tk. These are listed below. Operating System Packages Most Unix / Linux operating system distributions, as well as Mac OS X, include Tcl/Tk. If not already installed, you can use your system's package m
www.tcl.tk
5. tkinter — Python interface to Tcl/Tk docs.python.org/3/library/tkinter.html
tkinter — Python interface to Tcl/Tk — Python 3.8.6 documentation
tkinter — Python interface to Tcl/Tk Source code: Lib/tkinter/__init__.py The tkinter package (“Tk interface”) is the standard Python interface to the Tk GUI toolkit. Both Tk and tkinter are available on most Unix platforms, as well as on Windows sys
docs.python.org
6. Tk themed widgets docs.python.org/3.3/library/tkinter.ttk.html
25.2. tkinter.ttk — Tk themed widgets — Python 3.3.7 documentation
25.2. tkinter.ttk — Tk themed widgets The tkinter.ttk module provides access to the Tk themed widget set, introduced in Tk 8.5. If Python has not been compiled against Tk 8.5, this module can still be accessed if Tile has been installed. The former metho
docs.python.org
7. Basic Widgets tkdocs.com/tutorial/widgets.html
TkDocs - Tk Tutorial - Basic Widgets
This tutorial will quickly get you up and running with the latest Tk from Tcl, Ruby, Perl or Python on Mac, Windows or Linux. It provides all the essentials about core Tk concepts, the various widgets, layout, events and more that you need for your applica
tkdocs.com
8. Python - Tkinter grid() Method www.tutorialspoint.com/python/tk_grid.htm