摘要: 第4章课后小测-2 1、 for c in "ComputerScience": if c=="S": continue print(c,end="") 输出结果是Computercience 2、 for i in range(4): if i == 2: continue print(i,end 阅读全文
posted @ 2022-05-10 11:13 卜算子1937 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 第4章课后小测-1 1、 for c in "ComputerScience": print(c,end="") if c=="S": continue 执行结果是ComputerScience 2、 for i in range(4): if i > 2: break print(i,end=" 阅读全文
posted @ 2022-05-10 10:10 卜算子1937 阅读(383) 评论(0) 推荐(0) 编辑