python exception转字符串,在Python 3中将Exception转换为字符串
does anyone have an idea, why this Python 3.2 codetry:raise Exception('X')except Exception as e:print("Error {0}".format(str(e)))works without problem (apart of unicode encoding in windows shell :/),b...