資料處理 發佈留言 / Python / 作者: GDD 數值 轉 字串,可使用 str() 來達成。 a = 123 print(type(a)) a = str(a) print(type(a)) <class 'int'> <class 'str'>