Python 將浮點數轉換為字串

Muhammad Waiz Khan 2023年1月30日 2021年2月7日
  1. Python 使用 str() 函式將浮點數轉換為字串
  2. Python 使用 repr() 函式將浮點數轉換為字串
Python 將浮點數轉換為字串

本教程將解釋在 Python 中把浮點數轉換為字串的多種方法。我們可以使用 str()repr() 函式將浮點數轉換為字串。

Python 使用 str() 函式將浮點數轉換為字串

str() 方法接收一個物件作為輸入,並將其轉換為字串型別。下面的示例程式碼演示瞭如何在 Python 中使用 str() 函式將一個浮點數轉換為字串。

my_float = 0.125

string = str(my_float)
print(string)
print(type(string))

輸出:

0.125
<class 'str'>

Python 使用 repr() 函式將浮點數轉換為字串

repr() 方法將一個物件轉換為一個可列印的字串。下面的示例程式碼演示了在 Python 中 repr() 函式如何將一個浮點數轉換為一個字串。

my_float = 0.125

string = repr(my_float)
print(string)
print(type(string))

輸出:

0.125
<class 'str'>

相關文章 - Python Float

相關文章 - Python String