我正在尝试调试python脚本
似乎有些事情在python中并不简单
sys.exit( 'hello world' + self.__dict__)
给了我
TypeError: must be str, not dict
我该怎么办
sys.exit( 'hello world' + self.__dict__)
所以它不会给我一个错误?
答案 0 :(得分:3)
您可以将string
与dictionary
的字符串表示形式连接起来。
sys.exit( 'hello world' + str(self.__dict__))
答案 1 :(得分:1)