I was wondering if there was a way to convert my List into a String.
Example: Is there a way to convert MyList = ['a', 'b', 'c', 'd', 'e']
to MyString = "abcde"
?
Reason: I am trying to make words out of those 5 letters: bag, bad, cab, bed...
I tried creating a Label that shows MyList._contains_("bad")
but it doesn't work since "bad" is not in the list as a whole, but 'b', 'a', 'd' are in the list individually.
So I thought if I convert the entire List to one String, I would be able to use something like
MyString._contains_("bad")
and have the word show in the Label.
So is there a way to convert all this to one string? Or is there a more efficient way to solve this issue?
Thanks