Question: 
Write a python function to convert a given string list to a tuple.


Model's Code:
def string_list_to_tuple(s):
    return tuple(s)



Sample Correct Code:
def string_list_to_tuple(str1):
    result = tuple(x for x in str1 if not x.isspace()) 
    return result


Asserts:
assert string_list_to_tuple(("python 3.0")) == ('p', 'y', 't', 'h', 'o', 'n', '3', '.', '0')
assert string_list_to_tuple(("bigdata")) == ('b', 'i', 'g', 'd', 'a', 't', 'a')
assert string_list_to_tuple(("language")) == ('l', 'a', 'n', 'g', 'u', 'a', 'g','e')


Tests:
Test 1 of 3: FAIL: AssertionError()

Test 538 of 974: 396/538 (73.60594795539033%): failed