When you're iterating through a string with a for each loop, is it better to convert the string to a list and then loop through it? The reason I'm asking is because strings are immutable, so I'm not sure if it becomes inefficient in some way?
So, is
a = list("hello")
for i in a:
pass
better than
a = "hello"
for i in a:
pass
Thanks for the help.
joinin the end