I want to allow the user to import a module based on their string input argument.
i.e
$python myprogram.py --import_option xyz.py
In python I want something like this after parsing an argument.
arg = 'xyz.py'
import arg #assuming that the module name xyz.py exists.