ウィンドウタイトルを付ける

2019/01/05

Python2.7.8

# -*- coding: utf-8 -*-

import Tkinter

window = Tkinter.Tk()
window.title(u'タイトル')
window.mainloop()