SyntaxFix
Write A Post
Hire A Developer
Questions
I you just need an array of chars:
arr = list(str)
If you want to split the str by a particular str:
# str = "temp//temps" will will be ['temp', 'temps'] arr = str.split("//")