python tkinter canvas text code example
Example 1: tkinter text in canvas
self.canvas = Canvas(root, width=800, height=650, bg = '#afeeee')
self.canvas.create_text(100,10,fill="darkblue",font="Times 20 italic bold",
text="Click the bubbles that are multiples of two.")
Example 2: tkinter create_line
canvas.create_line(15, 25, 200, 25)