List from string

Report a typo

Write a program that constructs a list from the given string's symbols and then prints it.

So, if input_str, for example, contains a string "python", your program should turn it to the list ['p', 'y', 't', 'h', 'o', 'n'] and print it.

Write a program in Python 3
# the following line reads the string to work with from the input, do not modify it, please
input_str = input()

# your code here
___

Create a free account to access the full topic