上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 39 下一页
摘要: 来源: Shocker 链接: https://shockerli.net/post/python3 pymysql/ PyMySQL 是一个纯 Python 实现的 MySQL 客户端操作库,支持事务、存储过程、批量执行等。 PyMySQL 遵循 Python 数据库 API v2.0 规范,并包 阅读全文
posted @ 2018-09-10 17:31 Done、 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 地址: https://blog.csdn.net/yongche_shi/article/details/78677163 # 腾讯云限制25发信端口,修改为465,并开启. https://docs.gitlab.com/omnibus/settings/smtp.html # 常用邮箱配置规则 阅读全文
posted @ 2018-09-04 10:38 Done、 阅读(464) 评论(0) 推荐(0) 编辑
摘要: 操作地址: http://blog.sina.com.cn/s/blog_1320088ed0102uxln.html下载地址: http://www.zisync.com/download 阅读全文
posted @ 2018-08-22 11:25 Done、 阅读(2367) 评论(0) 推荐(0) 编辑
摘要: def redbags(money, num=10): import random choice = random.sample(range(1, money * 100), num - 1) choice.extend([0,money*100]) choice.sort() return [(choice[i + 1] - choice[i]) / 1... 阅读全文
posted @ 2018-08-17 15:57 Done、 阅读(3410) 评论(0) 推荐(1) 编辑
摘要: 计算器 分四种运算(加减乘除)、括号、去除最后括号、验证等式是否计算完成 计算顺序: 去空格 替换( )为(+) 除法 乘法 减法 加法 "代码来源" 阅读全文
posted @ 2018-08-16 17:55 Done、 阅读(1371) 评论(0) 推荐(0) 编辑
上一页 1 ··· 22 23 24 25 26 27 28 29 30 ··· 39 下一页