Docs
Docs
Tags
Light
Dark
Auto
Python
Leetcode submissions
2025-07-25 10:15:13 +0000 UTC
2025-07-25 10:15:13 +0000 UTC
To Lower Case
Categories:
Py
Tags:
Generated
Leetcode
Links
https://leetcode.com/submissions/detail/1710834313/
Code
class
Solution
:
def
toLowerCase
(self, s: str)
->
str:
return
s
.
lower()