In python is possible to import _everything_ from a module in the root namespace with
from module import *
Just don’t do it.
If you curious why look here
The good way is
import module
An Eye to the World, an Eye to the Net
In python is possible to import _everything_ from a module in the root namespace with
from module import *
Just don’t do it.
If you curious why look here
The good way is
import module
You must be logged in to post a comment.
June 29, 2009 at 8:22 pm
Dont you think it could be interesting?
http://post.oreilly.com/form/oreilly/viewhtml/9z1z04rvu536nc2t26g5ov66p1gmgoh3fhdsiqrhfc0?utm_content=PR-Natural+Lang+Processing+with+Python&utm_campaign=Webcasts+PR&utm_source=iPost&utm_medium=email
June 29, 2009 at 9:30 pm
Well if you are into textmining ….
🙂