Python ascii() Function
ExampleGet your own Python Server
Escape non-ascii characters:
x = ascii("My name is Ståle")
Run example »
Definition and Usage
The ascii()
function returns a readable
version of any object (Strings, Tuples, Lists, etc).
The ascii()
function will replace any non-ascii
characters with escape characters:
å
will be replaced with
\xe5
.
Syntax
ascii(object)
Parameter Values
Parameter | Description |
---|---|
object | An object, like String, List, Tuple, Dictionary etc. |