Break string into list of characters in Python [duplicate]

You can do this using list:

new_list = list(fL)

Be aware that any spaces in the line will be included in this list, to the best of my knowledge.

Leave a Comment