最佳答案
x = 16
sqrt = x**(.5) #returns 4
sqrt = x**(1/2) #returns 1
我知道我可以 import math
和使用 sqrt
,但我正在寻找一个答案以上。什么是 Python2中的整数除法?这种行为在 Python3中是固定的。