128k views
0 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? # Pick up the turtle and move it to its starting location. penup(-100, 200) goto() pendown() penup() goto(-100, 200) pendown() # Pick up the turtle and move it to (-100, 200)

2 Answers

5 votes

Answer:

B

Step-by-step explanation:

User SYN
by
5.1k points
4 votes

Answer:

a) penup()

goto(-100, 200)

pendown()

Step-by-step explanation:

The python program to indicate the location to begin writing the word can be

penup()

goto(-100, 200)

pendown()

# in python is use to add comment so it is incorrect.

all other option does not have correct syntex.

User UnstableFractal
by
4.8k points