I searched all of Google and SO for something that could help me with this seemingly simple problem.
I have a button in Tkinter and I want its weight to be bold. I tried this:
test = Button(..., text="Test", font=("Arial",10,"bold"), command=...)
And this:
test = Button(..., text="Test", font="Arial 10 bold", command=...)
But both return errors unknown option -font.
Any help would be greatly appreciated.
source
share