LoginSignup
13
7

More than 5 years have passed since last update.

Tkinterでwindowが表示されない

Last updated at Posted at 2017-09-24

windowsでpythonだけでプログラミングを書きたい人向けに
Tkinterはいいライブラリだと思いますが
表示させるところで躓く方は以下を参照。

ポイントは最後のroot.mainloop()をつける事。
これで一発解決します。
これが出来ればあとは、ボタン追加や
csvインポート、文字表示など多岐にわたり組み込み可能です。

# coding: utf-8
from tkinter import *
import tkinter as tk

root = Tk()

root.mainloop()
13
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
13
7