I have two lists a and b:
a  =   [3,    6,   8,   65,   3]
b  =   [34,   2,   5,   3,    5]
c gets [3/34, 6/2, 8/5, 65/3, 3/5]
Is it possible to obtain their ratio in Python, like in variable c above?
I tried a/b and got the error:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for /: 'list' and 'list'