python引入非内置模块的try语句保护方法

2022-03-16 00:00:00 语句 模块 引入

通过下面的代码,如果引用的模块不存在,则会给出一个恰当的提示信息

try:
    import win32com.client
except ImportError:
    raise ImportError, '皮蛋编程(pidancode.com)提醒您,此代码需要使用 win32all 扩展. 详细信息请查看 http://starship.python.net/crew/mhammond/win32/'

相关文章