I was wondering if it's possible to do mathematical operation between lists of numerical variables? For example, I have..
pointA = [ 22, 44, 83 ]
pointB = [ -17, 11, -25 ]
pointC = pointA - pointB
#result: [ 5, 55, 61 ]
Or should I just create my own function? Thank you!