SyntaxFix
Write A Post
Hire A Developer
Questions
you should use extend()
>>> c=[1,2,3] >>> c.extend(c) >>> c [1, 2, 3, 1, 2, 3]
other info: append vs. extend