
* Add Tkinter * Run update_list.py * increment language count * add DOG back to the languages list
6 lines
108 B
Python
6 lines
108 B
Python
import tkinter as tk
|
|
root = tk.Tk()
|
|
greeting = tk.Label(text="Hello World")
|
|
greeting.pack()
|
|
root.mainloop()
|