我需要输入大于2的数字,并取平方根,直到平方根小于2。我需要一个打印语句,其中包含该数字的平方根的次计数以及输出。到目前为止,我有:
import math
input_num = float(input("Enter a number greater than two: "))
while input_num < 2:
input_num = float(input("Enter a number greater than two: "))
else:
sqrt_num = math.sqrt(input_num)
count = 1
while sqrt_num > 2:
sqrt_num = math.sqrt(sqrt_num)
count += 1
print(count, ": ", sqrt_num, sep = '')
输出为:
Enter a number greater than two: 20
2: 2.114742526881128
3: 1.4542154334489537
我想包括count 1的第一次迭代。如何编写一个合适的循环,使其看起来像:
Enter a number greater than two: 20
1: 4.47213595499958
2: 2.114742526881128
3: 1.4542154334489537
答案 0 :(得分:3)
这是一种怪诞的方法,或者至少没有太大意义,因为它使变量sqrt_num不是平方根,但是我将count初始化为0并将sqrt_num初始化为input_num,如下所示:
generateSequence