Skip to content

Instantly share code, notes, and snippets.

@VictorSaenger
Last active September 6, 2019 13:21
Show Gist options
  • Select an option

  • Save VictorSaenger/f9ee638a4fff1050a3891f01a0b15b1e to your computer and use it in GitHub Desktop.

Select an option

Save VictorSaenger/f9ee638a4fff1050a3891f01a0b15b1e to your computer and use it in GitHub Desktop.
def merge_list(list_text):
l = len(list_text)
c = 1
merge = eval(list_text[0])[1:]
while c < l:
merge = merge + eval(list_text[c])[1:]
c += 1
return merge
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment