Tuesday 27 November 2018

How do I lowercase a string in Python?



Is there a way to convert a string from uppercase, or even part uppercase to lowercase?




For example, "Kilometers" → "kilometers".


Answer



Use .lower() - For example:



s = "Kilometer"
print(s.lower())


The official 2.x documentation is here: str.lower()
The official 3.x documentation is here: str.lower()


No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...