Program - str to list
Topic: Program - str to list
Solution
def str_to_list(sen): return list(sen)
List all Python Programs