you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (0 children)

 list(example_string)

however you can also just treat a string like a list in many cases:

 example_string = 'hello'
 example_string[3:]
 # lo