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()