資料處理

數值 轉 字串,可使用 str() 來達成。

a = 123
print(type(a))
a = str(a)
print(type(a))
<class 'int'>
<class 'str'>

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

Scroll to Top