1. 程式人生 > >TypeError: _str_returned non-string(type NoneType)

TypeError: _str_returned non-string(type NoneType)

截圖 mar ont shadow images 行修改 mark png process

今天聽網課的時候遇到了這樣一個問題:TypeError: __str__returned non-string (type NoneType)以及解決方法,分享給大家。(我學的是python3)


技術分享圖片

錯誤提示翻譯成中文的意思是:“類型錯誤:返回的非字符串類型”。

我想到這是類__str__ 中的問題,這部分代碼如下:

技術分享圖片


問題就出在這個else部分,我將這部分代碼進行修改,改為return ,程序就可以順利運行沒有任何錯誤了,截圖如下:

技術分享圖片

看來在python3中,在__str__中獲取字符串都需要使用return來返回。












TypeError: _str_returned non-string(type NoneType)