# 判断数N是否素数def Is_Prime(N): for i in range(2,int(N**(1/2))+1): if N % i == 0: return False else: return True
程序缩进如图所示