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.")
from tkinter import Tk, Canvas
canvas.create_text(
539.0, #example position on the x axis
310.99999999999994, #text position on the y axis
anchor="nw",
text="Your text", #Your text
fill="white", #or any color
font=("Inter Bold", 20 * -1) #"inter bold" - font-name and weight
)