Hi again, I'm writing a program that builds words letter by letter, and I was wondering if there's a better solution than this:
Is there something like a string buffer that I can use, or a method that converts a list into a string?Code:word = "";
for i in range(0, length):
...
word = word + newChar
return word
Thanks a lot for the help!
