Python Forum

Full Version: How to make button text bold in Tkinter?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I've googled this but can't find an answer. I just want to make the text on a button bold.
import tkinter as tk

root = tk.Tk()

button = tk.Button(None, text='Button', font='sans 16 bold').pack()

root.mainloop()
Thank you