Answer:
Following are the code in the Python Programming Language.
#set and initialize string type variable
str1 = "I love python"
#convert and initialize the value of string into list
chars=list(str1)
#print the value of the list
print(chars)
Output:
['I', ' ', 'l', 'o', 'v', 'e', ' ', 'p', 'y', 't', 'h', 'o', 'n']
Explanation:
The description of the program in the Python Programming Language.