The thing is, even though Python's import statement is designed to look similar to Java's, they do completely different things under the hood. As you know, in Java an import statement is really little more than a hint to the compiler. It basically sets up an alias for a fully qualified class name. For example, when you write
import java.util.Set;
it tells the compiler that throughout that file, when you write Set, you mean java.util.Set. And if you write s.add(o) where s is an object of type Set, the compiler (or rather, linker) goes out and finds the add method in Set.class and puts in a reference to it.
But in Python,
import util.set
(that is a made-up module, by the way) does something completely different. Since Python is an interpreted language with dynamic resolution, there's no compiler to go out and look up the code of any util.set module. What happens in Python is that the interpreter looks for a package named util with a module named set inside it and loads the package and module, and in the process, it actually creates an object named util with an attribute named set. (That's right, packages and modules are actual first-class objects in Python.) You could think of the above statement as
util = __import__('util.set')
where the function __import__ produces an object which has an attribute called set. In fact, that's actually what happens when you import a module - see the documentation for __import__. So you see, when you import a Python module, what you really get is just an object corresponding to the top-level package, util, and in order to get access to set you need to go through that.
As mentioned in at least one other answer, you could write
from util import set
or
import util.set as set
This still imports the package util with the module set in it, but instead of creating a variable util in the current scope, it creates a variable set that refers to util.set. Behind the scenes, this works kind of like
_util = __import__('util', fromlist='set')
set = _util.set
del _util
in the former case, or
_util = __import__('util.set')
set = _util.set
del _util
in the latter (although both ways do essentially the same thing). This form is semantically more like what Java does; it defines an alias (set) to something that would ordinarily only be accessible by a fully qualified name (util.set).