SyntaxFix
Write A Post
Hire A Developer
Questions
another fun way to do this:
from functools import reduce from operator import add li=[[1,2],[3,4]] x= reduce(add, li)