异常和警告处理案例 # -*- coding: UTF-8 -*- import MySQLdb #警告信息try except是无法捕捉的 from warnings import filterwarnings filterwarnings('error', category = MySQLdb.Warning) #当然也可以屏蔽警告filterwarnings("ignore") try: conn = MySQLdb.connect(host='127.0.0.1',user='test',p ...