Atom - ŒṘ
- Python's String Representation
Tags: miscellaneous , string
Arity: monadic
This atom is monadic, which means it takes one argument.
Functionality
Call Python's str
on z
.
Details
This atom is exceptionally useful for debugging - because Jelly smash-prints lists with strings into just one string, empty lists are sometimes empty strings, and singleton lists are printed as just the element, converting to the true internal representation is useful for checking what the structure of your data is. ŒṘṄṛƊ
is a monadic link that will print the Python string representation of z
(followed by a newline) to STDOUT and return z
itself.