The quiz where the difficulty automagically adapts to the player's Python knowledge
This is a question page. You can use this page to bookmark a question. Start a new quiz!
Question #941
For a large set of code, if you import * you will likely be cementing it into the module, unable to be removed. This would make it difficult to determine what items used in the code are coming from 'module'. (stackoverflow.com/questions/710551/use-import-module-or-f...)
Which one is a bad practice?
— The Python Quiz (@thepythonquiz) August 31, 2021
import module
from module import *
from module import foo
👇 Comment the answer, like and retweet! #python
Question difficulty: 🔵🔵🔵🔵🔵