HomeLinuxPython Object to String

Python Object to String


Changing Objects into Strings is sort of essential, particularly relating to transferring information from one place to a different, as strings are a lot simpler to switch than objects. Nevertheless, in Python, objects are in all places, and this mainly implies that the whole lot in Python is, at its core, an object, even the predefined information varieties. Subsequently, on this information, str() and repr() strategies might be used to transform varied varieties of objects into strings and make sure through the use of the kind() methodology.

Technique 1: Utilizing the str() Technique

The str() methodology is definitely the constructor methodology for constructing cases of the string class, and due to this fact it may be used to transform objects into Python strings. Let’s go over some examples of utilizing the str() methodology to transform built-in information sort objects and user-defined class objects into strings.

Instance 1: Changing Constructed-in Knowledge Kind Objects Into Strings

To show this, take the next code to create variables:

intVar = 123
floatVar = 22.22
listVar = [121,33,‘Google’,12]

 

As you’ll be able to see, you’ve created three variables, every of a distinct information sort object, to verify this use the kind() methodology:

print(sort(intVar))
print(sort(floatVar))
print(sort(listVar))

 

When this code is executed, it produces the next consequence in your terminal:

Let’s convert all of them utilizing the str() methodology, and make sure their sort utilizing the kind() methodology:

strIntVar = str(intVar)
strFloatVar = str(floatVar)
strListVar = str(listVar)

print(nAfter Conversion”)
print(sort(strIntVar))
print(sort(strFloatVar))
print(sort(strListVar))

 

When this code is executed now, it’s going to produce the next consequence on the terminal:

This output confirms that you’ve got efficiently transformed varied Python Objects into Python Strings.

Instance 2: Changing Customized Class Objects Into Strings

To show this, create a primary customized class utilizing the next code snippet:

class LHClass:
    def __init__(self):
        print(“New Object Created”)

 

Create an object of this class, and print its sort utilizing the kind() methodology:

objLHClass = LHClass()
print(sort(objLHClass))

 

When this code is executed now, it’s going to produce the next consequence on the terminal:

As you’ll be able to see, the kind of this object is the customized class “LHClass”. Create a brand new variable through the use of the str() constructor and go the article of LHClass as an argument and print out its sort with the kind() methodology:

convObj = str(objLHClass)
print(nAfter Conversion”)
print(sort(convObj))

 

When this code is executed, it’s going to produce the next outcomes on the terminal:

The output confirms that the article of a customized class will also be transformed right into a Python string utilizing the str() methodology.

Technique 2: Utilizing the repr() Technique

The repr() methodology works nearly identically to the str() methodology, and to show using this methodology, create an object of the integer information sort:

varInt = 420
print(sort(varInt))

 

To transform it right into a string, go the variable contained in the repr() methodology, retailer the lead to a separate variable and show its sort utilizing the kind() methodology:

convVar= repr(varInt)
print(nAfter Conversion”)
print(sort(convVar))

 

When this code is executed, it’s going to present the next outcomes in your terminal:

You might have efficiently transformed an integer object in a Python String, and you may even affirm that there isn’t a change within the worth by printing each the variables on to the terminal:

print(varInt)
print(convVar)

 

Append the above two strains within the code snippet after which execute the code to get the next verification on the terminal:

As you’ll be able to see that there isn’t a change within the worth of the variables in any respect.

Conclusion

If you’re in search of a solution to convert Python Objects into Python Strings, then you’ll be able to make the most of the str() constructor methodology and the repr() methodology. To make use of each of those strategies, merely go the article to be transformed within the arguments and retailer the return worth. To substantiate the conversion, you should use the kind() methodology together with the print() assertion. These strategies could be utilized on primary information sort objects in addition to objects of a user-defined class.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments