"W. eWatson" <[email protected]> writes: > See Subject. The code is below with a few changes I made at the bottom > by inserting > import string > import numpy > > module = raw_input("Enter module name: ")
replace this line with:
module_name = raw_input("Enter module name: ")
module = __import__(module_name)
> listing(module)
>
HTH
--
Arnaud
--
http://mail.python.org/mailman/listinfo/python-list
