Skip to main content

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

NameTypeDescription
iintThe non-negative integer to be converted into its base36 equivalent.

Returns

TypeDescription
stringThe base36 encoded string representation of the input integer using characters 0-9 and a-z.