import time
import turtle
turtle.speed(speed= None)
ElizabethBishop = turtle.Turtle()
ElizabethBishop.shape('turtle')
ElizabethBishop.penup()
def line(words, horiz_pos = -50):
x,y = ElizabethBishop.pos()
ElizabethBishop.goto(max(horiz_pos, -190), y)
ElizabethBishop.write(words)
x,y = ElizabethBishop.pos()
ElizabethBishop.goto(x, y - 25)
def by(author):
x, y = ElizabethBishop.pos()
ElizabethBishop.goto(x + 70, max(-190, y - 30))
ElizabethBishop.write(author)
x, y = ElizabethBishop.pos()
ElizabethBishop.goto(0, y)
ElizabethBishop.goto(-50, 190)
I didnt write the text of it here but when I run it it is all squished and text is writen over the other text. So I need help knowing how to add spaces between the lines of text. So it is more clearly seen