Skip to content

Instantly share code, notes, and snippets.

@bazuzu931
Last active February 10, 2017 14:34
Show Gist options
  • Save bazuzu931/a0ec6a076b3711097bc2f789346829ce to your computer and use it in GitHub Desktop.
Save bazuzu931/a0ec6a076b3711097bc2f789346829ce to your computer and use it in GitHub Desktop.
tkinter_Win_button.py
import tkinter
from tkinter import ttk
root = tkinter.Tk()
button = ttk.Button(root, text="hello")
button.pack()
root.mainloop()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment