/ Published in: Python
Used to convert lists to string
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
def convert(list): outlist = [] for j in list: outlist.append(j) return outlist