1.输出100以内的质数(质数除了1和本身没有其他因数)
i = 2L = []for i in range(2,100): j = 2 for j in range(2,i): if (i % j) == 0: break else: L.append(i)print(L)