MCPcopy Create free account
hub / github.com/HuberTRoy/leetCode / toLowerCase

Method toLowerCase

String/ToLowerCase.py:19–24  ·  view source on GitHub ↗

:type str: str :rtype: str

(self, str)

Source from the content-addressed store, hash-verified

17
18class Solution(object):
19 def toLowerCase(self, str):
20 """
21 :type str: str
22 :rtype: str
23 """
24 return str.lower()

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected