1% Generated by roxygen2 (4.1.1): do not edit by hand
2% Please edit documentation in R/pystr_islower.R
3\name{pystr_islower}
4\alias{pystr_islower}
5\title{Check if a string is lowercase.}
6\usage{
7pystr_islower(str)
8}
9\arguments{
10\item{str}{A character vector.}
11}
12\value{
13A logical vector.
14}
15\description{
16Return \code{TRUE} if all cased characters in the string are lowercase and there is at least one
17cased character, \code{FALSE} otherwise.
18}
19\examples{
20pystr_islower("all lowercase!")
21pystr_islower("All Lowercase?")
22pystr_islower("abc123")
23}
24\references{
25\url{https://docs.python.org/3/library/stdtypes.html#str.islower}
26}
27\seealso{
28\code{\link{pystr_isupper}}
29}
30
31