🎴 Flashcard Mode

Coding with Python

Card1 / 8
Mastered0
Review0
QuestionClick to flip

What does the line, from turtle import * do?

AnswerClick to flip back
A
Allows us to use turtle functions like fd() and pu().
💡 Explanation:

The statement 'from turtle import *' imports all functions from the turtle module into the current namespace, allowing the programmer to use commands like fd() directly.

Change Mode