Skip to content

is_lower

Checks if a string is in lowercase.

is_lower(x:string) -> bool

The is_lower function returns true if x is entirely in lowercase and false otherwise.

from {x: "hello".is_lower()}
{x: true}

is_alpha, is_upper, to_lower

Last updated: