Python整數與字串的轉換方式如下。 使用 str() 函式轉整數(int)為字串(string)。 n = 123 print(type(n)) # <class 'int'> s = str(n) print(type(s)) ...
確定! 回上一頁