Name: OP !rZq6XkhESk 2013-11-07 9:48
I want to know how to multiply two sets of numbers together in python. How do I do this?
For example say I have:
set1 = (x1, x2, x3)
set2 = (y1, y2, y3)
How would I get python to multiply these sets and have the result be:
set1 * set2 = (x1*y1,x2*y2, x3*y3)
For example say I have:
set1 = (x1, x2, x3)
set2 = (y1, y2, y3)
How would I get python to multiply these sets and have the result be:
set1 * set2 = (x1*y1,x2*y2, x3*y3)