Python import wildcard
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
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
Giugno 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
Giugno 29, 2009 at 9:30 pm
Well if you are into textmining ….