摘要: 正则学习 计算器 校园管理系统 p121,126,139 常用函数 常用模块 网盘 158 day34 2 阅读全文
posted @ 2018-08-20 09:53 SHORI 阅读(102) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-08-24 22:10 SHORI 阅读(2) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-08-24 16:10 SHORI 阅读(1) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-08-22 21:35 SHORI 阅读(2) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-08-22 16:40 SHORI 阅读(1) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-08-21 09:02 SHORI 阅读(1) 评论(0) 推荐(0) 编辑
摘要: # #在规范了工程模式以后,文件中的start文件在import时需要注意# import os# import sys# sys.path.append(os.path.dirname(os.getcwd()))# from core import core:# if __name__=='__n 阅读全文
posted @ 2018-08-20 08:44 SHORI 阅读(188) 评论(0) 推荐(0) 编辑
摘要: #结构化时间-->字符串时间#time.strftime("格式定义","结构化时间") 结构化时间参数若不传,则显示当前时间import time# print(time.strftime("%Y-%m-%d %X"))# #2018-08-17 08:55:16# print(time.strftime("%Y-%m-%d",time.localtime(1500000000)))# #20... 阅读全文
posted @ 2018-08-17 22:19 SHORI 阅读(134) 评论(0) 推荐(0) 编辑
摘要: # 斐波那契# def fib(x):# if x==1 or x ==2:# return 1## return fib(x-1)+fib(x-2)import re# ret= re.findall('avvvv','adnsadjkalsjdklasjdlaksjdsad')# print(r 阅读全文
posted @ 2018-08-17 08:46 SHORI 阅读(156) 评论(0) 推荐(0) 编辑
摘要: l = [2,3,5,10,15,16,18,22,26,30,32,35,41,42,43,55,56,66,67,69,72,76,82,83,88]def find(l,aim,start=0,end=None): end=len(l) if end is None else end mid_ 阅读全文
posted @ 2018-08-16 15:32 SHORI 阅读(140) 评论(0) 推荐(0) 编辑