这行代码是代表什么while n not in [1]:
题目:将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5。‘答案:while n not in :
for index in range(2,n+1):
if n % index == 0:
n //= index
if n ==1:
print(index)
else:
print('{}*'.format(index),end = '')
break while n not in :
相当于
while n != 1: while n not in :
not in:不在[列表]
这个列表只有一个元素,所以可以直接看成1
这样子的话,not in 就变成 !=
代码整体就变成了
while i != 1:
页:
[1]