Add Tkinter (#1192)

* Add Tkinter

* Run update_list.py

* increment language count

* add DOG back to the languages list
This commit is contained in:
calgary34
2021-12-23 15:00:38 -07:00
committed by GitHub
parent 4083bb5f55
commit 9cf58b9ed3
2 changed files with 8 additions and 2 deletions

5
t/Tkinter.py Normal file
View File

@@ -0,0 +1,5 @@
import tkinter as tk
root = tk.Tk()
greeting = tk.Label(text="Hello World")
greeting.pack()
root.mainloop()