當前位置:成語大全網 - 新華字典 - python報錯can only concatenate str (not "int") to str

python報錯can only concatenate str (not "int") to str

最近剛開始學python,在學習過程中遇到了壹個報錯 can only concatenate str (not "int") to str

後來了解到是沒有做數據類型的轉換,記錄在此:

我在輸出字典鍵值的時候,將數字和字符串混在了壹起,

此處,a['age']的值為23,是數字類型,而其他均為字符串,因此需要將這個數值轉換為字符串類型

數字類型轉換為字符串類型

str()函數:返回壹個對象的string格式。

順便附上字符串轉換為數字所用函數

字符串類型轉換為數字類型

int() 函數:用於將壹個字符串或數字轉換為整型。