I always wondered why the syntax for importing specific objects from a module is from module import x, y, z instead of import x, y, z from module.
from module import x, y, z
import x, y, z from module
A very wild guess and probably totally non-sense, but I knew that syntax from Modula-2 (man, that was twenty years ago, I feel old)... maybe Python was inspired by it ?