I tried using all the methods suggested by others but its not working. methods like str.split(), lst = list("abcd") but its throwing error saying [TypeError: 'list' object is not callable]
I want to convert string to list for each character in the word input str= "abc" should give list = ['a','b','c']
I want to get the characters of the str in form of list output - ['a','b','c','d','e','f'] but its giving ['abcdef']
str = "abcdef"
l = str.split()
print l