题目:输出1~100之间不能被7整除的数,每行输出10个数字 j = 0 for i in range(100): if i % 7 == 0: continue else: print(i,end=' ') j += 1 if j % 10 == 0: print("\n") 代码打印如下图: