len function

float len(inputString)

inputString string

Returns the length of the inputString.

This function returns the number of characters of the inputString.

Related

Examples

len("cityengine")
# result = 10

len("abc")
# result = 3