calfred2808

Hello world label #Python

Jul 18th, 2020
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.10 KB | None | 0 0
  1. from tkinter import Tk, Label
  2. root = Tk()
  3. Label(root, text="Hello, world!").pack()
  4. root.mainloop()
Add Comment
Please, Sign In to add comment