【python】这个代码哪里不对,大神求解

2024-12-30 04:08:21
推荐回答(1个)
回答1:

a和b的代码应该要在while里面

from math import sqrt
i=0
while i<1000:
    a = sqrt(i + 100)
    b = sqrt(i + 168 + 100)
    if type(a) and type(b)==int:
        print(i)
    else:
        i+=1