3 lines
72 B
Python
3 lines
72 B
Python
def is_empty(_str: str) -> bool:
|
|
return len(_str.strip(" ")) == 0
|
def is_empty(_str: str) -> bool:
|
|
return len(_str.strip(" ")) == 0
|