there is not equivalent syntax). For objects which don't have a particular
representation for human consumption, :func:`str` will return the same value as
:func:`repr`. Many values, such as numbers or structures like lists and
--dictionaries, have the same representation using either function. Strings and
--floating point numbers, in particular, have two distinct representations.
++dictionaries, have the same representation using either function. Strings, in
++particular, have two distinct representations.
Some examples::
'Hello, world.'
>>> repr(s)
"'Hello, world.'"
-- >>> str(1.0/7.0)
-- '0.142857142857'
-- >>> repr(1.0/7.0)
++ >>> str(1/7)
'0.14285714285714285'
>>> x = 10 * 3.25
>>> y = 200 * 200