For instance, in Java, when we import some class we can access the content of the class without having to write the file name. Something like this:
import structures.Node;
public class JavaExample {
//then I can call Node directly
Node node = new Node();
}
But in Python, when I want to do the same thing I have to do this:
import node
class PythonExample:
# have to write node. first
my_node = node.Node()
Is there a way to call the Node class without the 'node.', like we do in Java?