Draw text : Text : GUI Tk PYTHON examples


PYTHON examples » GUI Tk » Text »

 

Draw text


Draw text
 

from Tkinter import *

canvas = Canvas(width=300, height=300, bg='white')   
canvas.pack(expand=YES, fill=BOTH)                   

canvas.create_text(100280, text='Ham')             

mainloop()
           
         
  



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo GUI Tk
» Text