Thursday, December 18, 2025
HomeLanguagesConvert Decimal to String in Python

Convert Decimal to String in Python

Python defines type conversion functions to directly convert one data type to another. This article is aimed at providing the information about converting decimal to string.

Converting Decimal to String

str() method can be used to convert decimal to string in Python.

Syntax: str(object, encoding=’utf-8?, errors=’strict’)

Parameters:

object: The object whose string representation is to be returned.

encoding: Encoding of the given object.

errors: Response when decoding fails.

Example 1:

Python3




from decimal import Decimal
  
dec = Decimal(10)
print(dec, type(dec))
  
# Converting to string
dec = str(dec)
print(dec, type(dec))


Output:

10 <class 'decimal.Decimal'>
10 <class 'str'>

Example 2:

Python3




from decimal import Decimal
  
  
dec = Decimal("0.01")
print(dec, type(dec))
  
# Converting decimal to string
s = str(dec)
print(s, type(dec))


Output:

0.01 <class 'decimal.Decimal'>
0.01 <class 'decimal.Decimal'>
RELATED ARTICLES

Most Popular

Dominic
32455 POSTS0 COMMENTS
Milvus
108 POSTS0 COMMENTS
Nango Kala
6823 POSTS0 COMMENTS
Nicole Veronica
11958 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12036 POSTS0 COMMENTS
Shaida Kate Naidoo
6958 POSTS0 COMMENTS
Ted Musemwa
7203 POSTS0 COMMENTS
Thapelo Manthata
6910 POSTS0 COMMENTS
Umr Jansen
6890 POSTS0 COMMENTS