Question: 
[link text](https:// [link text](https:// [link text](https://)))write a function to convert a string to a list.


Model's Code:
def string_to_list(s):
    return s.split()



Sample Correct Code:
def string_to_list(string): 
    lst = list(string.split(" ")) 
    return lst


Asserts:
assert string_to_list("python programming")==['python','programming']
assert string_to_list("lists tuples strings")==['lists','tuples','strings']
assert string_to_list("write a program")==['write','a','program']


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 118 of 974: 89/118 (75.42372881355932%): success