2018年10月25日
摘要: n=10 def pySum(n): a = list(range(n)) b = list(range(0, 5 * n, 5)) c = [] for i in range(len(a)): c.append(a[i] ** 2 + b[i] ** 3) return (c) print(pySum(n)) import nump... 阅读全文
posted @ 2018-10-25 21:59 吕达 阅读(99) 评论(0) 推荐(0) 编辑
摘要: from datetime import datetime print(datetime.now()) now=datetime.now() date= datetime.strftime(now,"%Y-%m-%d %H:%M:%S") date1 = '{0:%Y}年{0:%m}月{0:%d}日 阅读全文
posted @ 2018-10-25 21:53 吕达 阅读(69) 评论(0) 推荐(0) 编辑