str(list) calls repr() on elements?
Michael Dyck
MichaelDyck at home.com
Wed Oct 18 04:04:31 EDT 2000
More information about the Python-list mailing list
Wed Oct 18 04:04:31 EDT 2000
- Previous message (by thread): str(list) calls repr() on elements?
- Next message (by thread): str(list) calls repr() on elements?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
It seems that the built-in function 'str', when applied to a list/tuple, constructs its result by calling 'repr' on the elements of the list/tuple, rather than 'str'. How come? e.g. >> str(1L) '1' >> repr(1L) '1L' >> str( [1L] ) '[1L]' # not '[1]' -Michael Dyck
- Previous message (by thread): str(list) calls repr() on elements?
- Next message (by thread): str(list) calls repr() on elements?
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list