10 lines
109 B
Python
10 lines
109 B
Python
|
|
|
|
|
|
|
|
|
|
|
|
def is_hello_world(text : str):
|
|
return text is not None and text.strip().lower() == "hello world"
|
|
|