Contact: aviboots(AT)netvision.net.il
41,606 questions
54,269 answers
573 users
import math print(math.sqrt(16)) ''' run: 4.0 '''
import math print(pow(16, 0.5)) ''' run: 4.0 '''
print(16 ** 0.5) ''' run: 4.0 '''