-1
I have a problem with my show. When I type "from Math import sqrt (or anything else", the Math library is not recognized by pycharm. Follows the code:
from math import sqrt
n = int(input('Digite um número: '))
r = math.sqrt(n)
print('A raiz de {} é {}'.format(n, math.ceil(r)))
Maybe it’s a very simple problem. But I still can’t solve it.