File size: 79 Bytes
759f238
 
 
 
1
2
3
4

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