Python tkinter label orientation
You can achieve vertical display, without the text rotation, by using the wraplength option which set to 1 will force the next char into a new line:
Label( master_frame, text="Vertical Label", wraplength=1 ).grid( row=0, column=0 )
No, there is no way to display rotated text in the tkinter Label widget.