There is a function to capitalize a string, I would like to be able to change the first character of a string to be sure it will be lowercase.
How can I do that in P
s = "Bobby tables" s = s[0].lower() + s[1:]