Hello, Tkinter World!

Posted on 5月 15th, 2013 by cx20

Tkinter

Tkinter は Tcl スクリプト用の GUI ツールキット「Tk」を Python から呼出し可能にしたライブラリである。
以下は Python による Tkinter の呼出し例となっている。

ソースコード

from Tkinter import *
 
window = Tk()
window.title( 'Hello, World!' )
window.geometry( '640x480' )
 
label = Label( text = "Hello, Tkinter World!" )
label.pack( side = 'top', anchor = 'w' )
 
window.mainloop()

実行方法

C:¥> python hello.py

実行結果

+------------------------------------------+
|Hello, World!                    [_][~][X]|
+------------------------------------------+
|Hello, Tkinter World!                     |
|                                          |
|                                          |
|                                          |
|                                          |
|                                          |
|                                          |
|                                          |
|                                          |
|                                          |
+------------------------------------------+

Tags:

Categories: Python, Tcl/Tk

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です

WP-SpamFree by Pole Position Marketing