Answer
import turtle
turtle.forward(50)
turtle.goto(-50,0)
turtle.penup()
turtle.right(90)
turtle.pendown()
turtle.forward(100)
turtle.done()
Work Step by Step
Use the goto() method to make straight lines with the turtle. Use penup() and pendown() to move the turtle to the next point.