1% Generated by roxygen2 (4.1.1): do not edit by hand
2% Please edit documentation in R/pystr_title.R
3\name{pystr_title}
4\alias{pystr_title}
5\title{Titlecase a string.}
6\usage{
7pystr_title(str)
8}
9\arguments{
10\item{str}{A character vector.}
11}
12\value{
13A character vector.
14}
15\description{
16Return a titlecased version of the string where words start with an uppercase character
17and the remaining characters are lowercase.
18}
19\examples{
20pystr_title("make me pretty!")
21}
22\references{
23\url{https://docs.python.org/3/library/stdtypes.html#str.title}
24}
25
26