Create a function that returns True if a string is empty and False otherwise.
True
False
is_empty("") ➞ True is_empty(" ") ➞ False is_empty("a") ➞ False
" "
return