私はpythonを学んでおり、ここにコードがあります:
x = raw_input('Enter a numerator:')
y = raw_input('Enter a denominator:')
print x / y
これは私にエラーを与えます:
Traceback (most recent call last):
line 3, in <module>
print x / y
TypeError: unsupported operand type(s) for /: 'str' and 'str'