I'm doing code conversion form C to python... I have a char array and is used as a String buffer
char str[25]; int i=0;
str[i]='\0';
Here i will be taking different values and even str[i] also holds different values
I want the equivalent code in python... Like a string buffer, where i can store n edit string contents inside. I even tried using a list but it is not very efficient so is there any other way out?? Is there any string buffer thing in Python? If so how can i use it according to these?