Explore Westonci.ca, the top Q&A platform where your questions are answered by professionals and enthusiasts alike. Join our platform to get reliable answers to your questions from a knowledgeable community of experts. Experience the convenience of finding accurate answers to your questions from knowledgeable experts on our platform.

Examine the code below. When this program runs, what size will the text be when printed on the screen?


import simplegui


def draw(canvas):

for i in range (10):

canvas.draw_text("Hello", (10, 25 + 20*i), 20, "red")


frame = simplegui.create_frame("Testing", 400, 400)

frame.set_draw_handler(draw)

frame.start()