Python Converter Float em String

Muhammad Waiz Khan 30 janeiro 2023
  1. Python Converter Float em String usando a função str()
  2. Python Converter Float em String usando a função repr()
Python Converter Float em String

Este tutorial explicará várias maneiras de converter um float em uma string em Python. Podemos converter um float em uma string usando as funções str() e repr().

Python Converter Float em String usando a função str()

O método str() pega um objeto como entrada e o converte em um tipo de string. O código de exemplo abaixo demonstra como usar a função str() para converter um float em string em Python.

my_float = 0.125

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

Resultado:

0.125
<class 'str'>

Python Converter Float em String usando a função repr()

O método repr() converte um objeto em uma string imprimível. O código de exemplo abaixo demonstra como a função repr() converte um float em uma string em Python.

my_float = 0.125

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

Resultado:

0.125
<class 'str'>

Artigo relacionado - Python Float

Artigo relacionado - Python String