上一页 1 2 3 4 5 6 7 8 9 10 ··· 23 下一页
摘要: import enum class BugStatus(enum.IntEnum): new = 7 incomplete = 6 invalid = 5 wont_fix = 4 in_progress = 3 fix_committed = 2 fix_released = 1 print('O 阅读全文
posted @ 2019-10-14 16:34 zhouhaiwu 阅读(104) 评论(0) 推荐(0) 编辑
摘要: import enum class BugStatus(enum.Enum): new = 7 incomplete = 6 invalid = 5 wont_fix = 4 in_progress = 3 fix_committed = 2 fix_released = 1 for status 阅读全文
posted @ 2019-10-14 16:12 zhouhaiwu 阅读(383) 评论(0) 推荐(0) 编辑
摘要: import enum class BugStatus(enum.Enum): new = 7 incomplete = 6 invalid = 5 wont_fix = 4 in_progress = 3 fix_committed = 2 fix_released = 1 print('\nMe 阅读全文
posted @ 2019-10-14 16:09 zhouhaiwu 阅读(315) 评论(0) 推荐(0) 编辑
摘要: 一、string:文本常量和模板 函数:capwords() import string s = 'The quick brown fox jumped over the lazy dog.' print(s) print(string.capwords(s)) The quick brown fo 阅读全文
posted @ 2019-10-11 17:17 zhouhaiwu 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 一、http://www.unicode.org/faq/normalization.html 二、http://nedbatchelder.com/text/unipain.html 三、一年一次的极客大赛,正好可以印证下我学python学的怎么样了,也是好事; 四、 阅读全文
posted @ 2019-09-04 16:34 zhouhaiwu 阅读(153) 评论(0) 推荐(0) 编辑
摘要: U盘拷贝 当U盘插入主机时 被系统识别挂载后 通过python代码自动的去读取U盘中的资料并且进行拷贝 寄存在U盘上的 把硬盘上的资料进行读取并移动到U盘里 有点像 繁殖性 传输性 破坏性 破坏系统或者是资料 一种重复性的执行工具 有一种执行动作 是重复性的 python 工具包 都是内置的 标准库 阅读全文
posted @ 2019-08-12 21:27 zhouhaiwu 阅读(289) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2019-08-10 18:40 zhouhaiwu 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 一、前端概述 1、HTML概述 什么是HTML HTML是用来描述网页的一种语言; 超文本标记语言(英语:HyperText Markup Language,简称:HTML)是一种用于创建网页的标准标记语言; HTML不是一种编程语言,而是一种标记语言 标记语言是一套标记标签(markup tag) 阅读全文
posted @ 2019-08-06 14:50 zhouhaiwu 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 服务器 内存、cpu、disk、nic、raid、sn、model、os、status、 disk_info = { } SERVER001 storage .... NET001 网络设备 eth num、网卡速度、背板带宽、firmware ... 管理ip、 software .... IDC 阅读全文
posted @ 2019-07-11 16:56 zhouhaiwu 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 一、 oOO6jpspg/j5 二、 alter user root@localhost IDENTIFIED BY '123'; 三、 create database s11Madking charset utf8; 四、 python manage.py makemigrations pytho 阅读全文
posted @ 2019-07-10 16:07 zhouhaiwu 阅读(260) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 23 下一页