+ 1
Function
I have 2 list in 1 list like: x = [[3,4,6],[7,3,1]] And I want to caleculate each value in a list and get sum of 2 list; like: [3**3 + 4**4 + 6**6] + [7**7 + 3**3 + 1**1] ...With function, I need help to make this done.
5 odpowiedzi
I have 2 list in 1 list like: x = [[3,4,6],[7,3,1]] And I want to caleculate each value in a list and get sum of 2 list; like: [3**3 + 4**4 + 6**6] + [7**7 + 3**3 + 1**1] ...With function, I need help to make this done.