1% Generated by roxygen2 (4.1.1): do not edit by hand
2% Please edit documentation in R/pystr_capitalize.R
3\name{pystr_capitalize}
4\alias{pystr_capitalize}
5\title{Capitalize a string.}
6\usage{
7pystr_capitalize(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 its first character capitalized and the rest lowercased.
17}
18\examples{
19pystr_capitalize("ONCE UPON A TIME, ")
20}
21\references{
22\url{https://docs.python.org/3/library/stdtypes.html#str.capitalize}
23}
24\seealso{
25\code{\link{pystr_title}}
26}
27
28