Convert List to String


/ Published in: Python
Save to your folder(s)

Used to convert lists to string


Copy this code and paste it in your HTML
  1. def convert(list):
  2. outlist = []
  3. for j in list:
  4. outlist.append(j)
  5. return outlist

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.