抱歉标题不好。这是我的代码:
import math
# Finds the square root of a number
def square_root():
square_root = math.sqrt(int(raw_input('What number do you want the Square Root for')))
print "The square root of is: %d " % (square_root)
基本上,我想阻止用户输入一个不以 0、1、4、6、9 或 25 结尾的数字,所以我只能输出完美的正方形。我有点知道该怎么做,但我一生都记不起这些术语来获得一个像样的谷歌搜索,所以我来到了这里。
我知道这将涉及某种形式的if
东西,看起来像这样[1:3]
。