摘要: 基础1. ctrl+space: 中英文切换 注释ctrl+/:单行注释ctrl+shift+/:块注释(多行注释,暂时不能用) 操作代码1. ctrl+shift+A:万能命令行2. shift两次:查看资源文件3. ctrl+d:复制粘贴一行4. ctrl+y:删除一行5. shift+F6:重 阅读全文
posted @ 2019-09-12 23:25 Bryan_fwl 阅读(166) 评论(0) 推荐(0) 编辑
摘要: 1.ansible Working in IT, you're likely doing the same tasks over and over. What if you could solve problems once and then automate your solutions goin 阅读全文
posted @ 2018-04-26 13:52 Bryan_fwl 阅读(91) 评论(0) 推荐(0) 编辑
摘要: 1111 阅读全文
posted @ 2018-04-26 13:48 Bryan_fwl 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 字典的方法和操作 len(m) 返回m中的项目数m[k] 返回m中键k的项m[k]=x 将m[k]的值设为xdel m[k] 从m中删除m[k]k in m 如果k是m中的键,则返回Truem.clear() 删除m中的所有项目m.copy() 返回m的一个副本m.fromkeys(s [,valu 阅读全文
posted @ 2016-12-20 10:40 Bryan_fwl 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 方法 描述s.captitalize() 首字符边大写s.center(witdh [,pad]) 在长度为width的字段内将字符串居中,pad是填充字符s.count(sub,[,start [,end]]) 计算指定字符串sub出现的次数s.decode([encoding [,errors] 阅读全文
posted @ 2016-12-19 14:52 Bryan_fwl 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 标识符保留字 and del from nonlocal try as elif golbal not while assert else if or with break except import pass yield class exec in print continue finally i 阅读全文
posted @ 2016-12-19 09:46 Bryan_fwl 阅读(849) 评论(0) 推荐(0) 编辑