What is the purpose of Python's Turtle Graphics Module?

Calculate mathematical equations
Gathering user input
Importing code to draw on the screen
Printing strings on the screen

Respuesta :

Answer:

Importing code to draw on the screen

Explanation:

From the naming of the module itself, Python's Turtle Graphics Module, one can see that the objective of the module is to let python users handle graphics which could be a dot, lines, images or shapes (rectangle, triangle, etc.)

There are several applications of this module, one of which is: it is useful in designing games.

To import the module in your python program, you make use of the following syntax.

import turtle

Having said that, from the list of given options.

Options (1), (2) and (4) do not address the purpose of the module; only option (3) does.

Hence, option (3) answers the question.

Answer:

c

Explanation: