0
Lists in Python
Hello, I have a problem. I have a function with output [[x, y] , [x, y],...] ( x and y are integers) And an other funcion with output [[z], [z],...] How can I get them together in: [[x,y,z] , [x,y,z], [x,y,z],..] ? Thank you!
2 ответов
+ 4
+ 1
search about 'zip' .. it's a built-in function in python3 btw