Difference between revisions of "Tkinter"

From ArmadeusWiki
Jump to: navigation, search
(New page: {{Under Construction}} ==Introduction== The Tkinter module (“Tk interface”) is the standard Python interface to the Tk GUI toolkit. ==Installation== ==Quick test== from Tkinter impo...)
 
m (TkInter moved to Tkinter)
(No difference)

Revision as of 13:17, 21 July 2014

Page under construction... Construction.png Informations on this page are not guaranteed !!

Introduction

The Tkinter module (“Tk interface”) is the standard Python interface to the Tk GUI toolkit.

Installation

Quick test

from Tkinter import *

root = Tk()

w = Label(root, text="Hello, world!") w.pack()

root.mainloop()

Going further

Links