Files
30-seconds-of-code/test/is_lower_case/is_lower_case.py
2018-04-14 10:54:46 +00:00

2 lines
62 B
Python

def is_lower_case(string):
return string == string.lower()