55.6k views
5 votes
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 it's starting location. B prenup (-100,200) Goto() Pendown() C. Penup() Goto(-100,200) Pendiente D. # pick up the turtle and move it to (-100,200)

2 Answers

7 votes

Answer:

Answer is C.

Step-by-step explanation:

penup()

goto(-100, 200)

pendown()

User Alsabsab
by
4.0k points
3 votes

Answer:

C:

penup()

goto(-100, 200)

pendown()

Step-by-step explanation:

This is the correct syntax.

Option A is just a note since is has a #

Option B doesn't have the correct syntax.

Option C is also just a note

Thus, Option C is the correct option.

User Sampad
by
4.6k points