Python 將浮點數轉換為字串
Muhammad Waiz Khan
2023年1月30日
2021年2月7日
本教程將解釋在 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 中查詢最大浮點數
- 在 Python 中檢查字串是否為數字
- 在 Python 中將字串轉換為浮點值
- 修復 Python 中浮點物件無法呼叫的錯誤
- 在 Python 中將字串轉換為小數
- 在 Python 中將列表轉換為浮點數