Kali, a Python programmer, is using the turtle module to write the word “hello.” Which code should she use to indicate the location to begin writing the word?
A
# Pick up the turtle and move it to its starting location.B
penup(-100, 200) goto()pendown()C
penup() goto(-100, 200) pendown()D
# Pick up the turtle and move it to (-100, 200)