my_list = []
['h', 'e', 'l', 'l', 'o']
my_list = [] for char in 'hello': my_list.append(char) print(my_list)