![]() |
VOOZH | about |
In Python, the str() and repr() functions are used to obtain string representations of objects. While they may seem similar at first glance, there are some differences in how they behave. Both of the functions can be helpful in debugging or printing useful information about the object.
In the given example, we are using the str() function on a string and floating values in Python.
Output:
Hello, Geeks. 0.181818181818
In the given example, we are using the repr() function on a string and floating values in Python.
Output:
'Hello, Geeks.' 0.18181818181818182
From the above output, we can see if we print a string using the repr() function then it prints with a pair of quotes and if we calculate a value we get a more precise value than the str() function.
In this example, we are creating a DateTime object of the current time and we are printing it into two different formats.
str() displays today's date in a way that the user can understand the date and time. repr() prints an “official" representation of a date-time object (means using the “official” string representation we can reconstruct the object).
Output :
2016-02-22 19:32:04.078030 datetime.datetime(2016, 2, 22, 19, 32, 4, 78030)
A user-defined class should also have a __repr__() if we need detailed information for debugging. And if we think it would be useful to have a string version for users, we create a __str__() function. In this example, We have created a class Complex which has two instance variables real and imag. We are creating custom __repr__() and __str__() methods in the class.
Output :
10 + i20 Rational(10, 20)
Points | str() | repr() |
Return Value | Returns a human-readable string representation of the object | Returns an unambiguous string representation of the object |
Usage | Used for creating user-friendly output and for displaying the object as a string | Used for debugging and development purposes to get the complete information of an object |
Examples | str(123) returns '123' | repr(123) returns '123' |
str('hello') returns 'hello' | repr('hello') returns "'hello'" | |
str([1, 2, 3]) returns '[1, 2, 3]' | repr([1, 2, 3]) returns '[1, 2, 3]' | |
str({'name': 'John', 'age': 30}) returns "{'name': 'John', 'age': 30}" | repr({'name': 'John', 'age': 30}) returns "{'name': 'John', 'age': 30}" |