15 lines
292 B
Python
15 lines
292 B
Python
# This Python file uses the following encoding: utf-8
|
|
|
|
# if __name__ == "__main__":
|
|
# pass
|
|
|
|
import os
|
|
import sys
|
|
import numpy as np
|
|
|
|
def process_arrays(a, b, c, d, e):
|
|
result = [x + y for x, y in zip(a, b)]
|
|
return np.array(result), c+d+e
|
|
|
|
print(process_arrays([1,2],[2,3],3,4,5))
|