Is there a way to associate the character '√' to actually perform the sqrt() function in python?
from math import sqrt
print sqrt(9)
>>> 3.0
print √9
>>> 3.0
Is there a way to associate the character '√' to actually perform the sqrt() function in python?
from math import sqrt
print sqrt(9)
>>> 3.0
print √9
>>> 3.0