摘要: 初始安装配置(windows10) jenkins文档:https://www.jenkins.io/zh/doc/pipeline/tour/getting-started/ 安装java 安装docker:https://www.runoob.com/docker/windows-docker- 阅读全文
posted @ 2020-04-28 23:37 鱼虫光 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 求n以内的质数(素数) from math import sqrtdef fun(n): li = [] for i in range(2, n + 1): count = 0 for j in range(2, int(sqrt(i) + 1)): ''' 不用除到n是因为: 假如一个数N是合数, 阅读全文
posted @ 2020-04-28 13:12 鱼虫光 阅读(134) 评论(0) 推荐(0) 编辑