2 lines
62 B
Python
2 lines
62 B
Python
def is_lower_case(string):
|
|
return string == string.lower() |
def is_lower_case(string):
|
|
return string == string.lower() |