Как сделать букву капитал в Python

s = "hello openGeNus"
t = s.title()
print(t)
PythonCopy
Lovely Lemur