2014-09-27 71 views

回答

2
>>> a='math' 
>>> import importlib 
>>> i=importlib.import_module(a) 
>>> i.sqrt(4) 
2.0 
相關問題