Create a function that returns true if a string contains any spaces.
true
has_spaces("hello") ➞ false has_spaces("hello, world") ➞ true has_spaces(" ") ➞ true has_spaces("") ➞ false has_spaces(",./!@#") ➞ false