python
파이썬의 try ... import .. except 예시
'김용환'
2018. 10. 8. 10:03
import 실패를 방지하는 파이썬의 try ... import .. except: 문이다.
다른 언어에서는 못 본 것 같다.
try:
from PySide.QtGui import *
from PySide.QtCore import *
from PySide.QtWebKit import *
except ImportError:
from PyQt4.QtGui import *
from PyQt4.QtCore import *
from PyQt4.QtWebKit import *