1% Generated by roxygen2 (4.1.1): do not edit by hand
2% Please edit documentation in R/pystr_lower.R
3\name{pystr_lower}
4\alias{pystr_lower}
5\title{Lowercase a string.}
6\usage{
7pystr_lower(str)
8}
9\arguments{
10\item{str}{A character vector.}
11}
12\value{
13A character vector.
14}
15\description{
16Return a copy of the string with all the cased characters converted to lowercase.
17}
18\examples{
19pystr_lower("LOWERCASE ME!")
20}
21\references{
22\url{https://docs.python.org/3/library/stdtypes.html#str.lower}
23}
24\seealso{
25\code{\link{pystr_upper}}
26}
27
28