i want to create a string S , which can be used as an array , as in each element can be used separately by accesing them as an array.
feedback
|
|
That's how Python strings already work:
But keep in mind that this is read only access. | |||
|
feedback
|
|
You can convert a string to a list of characters by using
| |||||||||||||||
feedback
|
|
I am a bit surprised that no one seems to have written a popular "MutableString" wrapper class for Python. I would think that you'd want to have it store the string as a list, returning it via For simple operations just operating on the list and using | |||||
feedback
|