Write a python function to convert a string to a list
Topic: Write a python function to convert a string to a list
Solution
def convert_str_to_list(string): return string.split(' ')
List all Python Programs
Solution
def convert_str_to_list(string): return string.split(' ')