int_to_base36
Convert an integer to a base36 string.
def int_to_base36(
i: int
) - > string
Convert an integer to a base36 string.
Parameters
| Name | Type | Description |
|---|---|---|
| i | int | The non-negative integer to be converted into its base36 equivalent. |
Returns
| Type | Description |
|---|---|
string | The base36 encoded string representation of the input integer using characters 0-9 and a-z. |