← Back to challenges

Is the String Empty?

PythonMediumstringsvalidationlanguage_fundamentals

Instructions

Create a function that returns True if a string is empty and False otherwise.

Examples

is_empty("") ➞ True

is_empty(" ") ➞ False

is_empty("a") ➞ False

Notes

  • A string containing only whitespaces " " does not count as empty.
python3
Loading editor…
to run
Walks through the solution with reasoning and edge cases.