1% Generated by roxygen2 (4.1.1): do not edit by hand
2% Please edit documentation in R/pystr_swapcase.R
3\name{pystr_swapcase}
4\alias{pystr_swapcase}
5\title{Swap the case of a string.}
6\usage{
7pystr_swapcase(str)
8}
9\arguments{
10\item{str}{A string.}
11}
12\value{
13A string.
14}
15\description{
16Return a copy of the string with uppercase characters converted to lowercase and vice versa.
17}
18\examples{
19pystr_swapcase("Swap Me!")
20}
21\references{
22\url{https://docs.python.org/3/library/stdtypes.html#str.swapcase}
23}
24
25