How can I control the position of text in a label?
Thank you
slasel 0 Newbie Poster
Recommended Answers
Jump to PostYou can also use the Tkinter canvas as a label...
''' tk_canvas_create_text1.py show text at a given x, y location on a Tkinter canvas ''' try: # Python2 import Tkinter as tk except ImportError: # Python3 import tkinter as tk root = tk.Tk() root.title('Tkinter canvas text') canvas …
All 3 Replies
Gribouillis 1,391 Programming Explorer Team Colleague
vegaseat 1,735 DaniWeb's Hypocrite Team Colleague
Lardmeister 461 Posting Virtuoso
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.