I have this lines of code and I dont understand why does it work.
list_ = [] string = \'12345\' for i in string: list_ += i print(list_) #Output: [\'1\',