Files
30-seconds-of-code/snippets/is_lower_case.md
2019-08-20 10:09:53 +03:00

18 lines
346 B
Markdown

---
title: is_lower_case
tags: string
---
Checks if a string is lower case.
Convert the given string to lower case, using `str.lower()` method and compare it to the original.
```py
def is_lower_case(string):
return string == string.lower()
```
```py
is_lower_case('abc') # True
is_lower_case('a3@$') # True
is_lower_case('Ab4') # False
```