x_empty_dragon wrote:
python?
>>> 2+2^(1/2)
4
>>> 2+2.0^(1.0/2)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: unsupported operand type(s) for ^: 'float' and 'float'
>>> 0x16+0b10
File "<stdin>", line 1
0x16+0b10
^
SyntaxError: invalid syntax
--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

