Answers for "python repl it"

6

python repr

# The repr() function returns a printable representational string of the given object.
>>> var = 'foo'
>>> print(repr(var))
"'foo'"
Posted by: Guest on March-26-2020

Python Answers by Framework

Browse Popular Code Answers by Language