float (str) 函式將符合浮點型的規範的字串轉換成float 型。 num1 = "123.12"; num2 = float(num1); print("num2: %f" % num2); ''' num2: 123.120000 ''' ...
確定! 回上一頁