Comment faire une lettre de capital dans Python
s = "hello openGeNus"
t = s.title()
print(t)
PythonCopy
Lovely Lemur
s = "hello openGeNus"
t = s.title()
print(t)
PythonCopy