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.
It might make more sense in english to say import x, y, z from module but in programming it makes much more sense to bring the more general Item first and then bring the details.
It might not be the reason but it makes things easier for the compiler or interpreter.
Try writing a compiler and you'll know what I mean :D