Comment faire une lettre de capital dans Python

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