Is there a way to draw vertical text in Tkinter library? (Python recommended)
textID = w1.create_text(5, 5, anchor=\"nw\")
w1.itemconfig(textID, text = \"Thi
I don't know any way to make vertical text in tkinter, but you can just make an image of the vertical text you want
vertical_text = PhotoImage(file = "
Here is a screenshot from a tkinter window in a program I'm making which lets you revise words
