python - How do I convert user input into a list? - Stack ...
stackoverflow.com › questions › 35582959I'm wondering how to take user input and make a list of every character in it. magicInput = input('Type here: ') And say you entered "python rocks" I want a to make it a list something like this. magicList = [p,y,t,h,o,n, ,r,o,c,k,s] But if I do this: magicInput = input('Type here: ') magicList = [magicInput] The magicList is just ['python rocks']