12 2016 档案

摘要:引言 个人平时在写sql脚本的时候会使用到SQL Prompt这款插件,除了强大的智能提示和格式化sql语句功能,我还喜欢使用Snippets代码段功能。比如我们可以在查下分析器输入ssf后按Tab键,SQL Prompt就可以帮我们快速的输入SELECT * FROM 。 但是个人不习惯看大写的s 阅读全文
posted @ 2016-12-13 17:40 十月狐狸 阅读(1301) 评论(0) 推荐(0) 编辑
摘要:引 言 国庆期间下定决心打算学习Python,于是下载安装了开发环境。然后问题就来了,怎么开始呢?纠结一番,还是从官方帮助文档开始吧。可是全是英文啊,英语渣怎么破?那就边翻译边看边实践着做吧(顺便吐槽下百度翻译,同样的语句百度翻译出来的结果和谷歌翻译出来的结果差的不是一丢丢)。鉴于以往学习语言的经历 阅读全文
posted @ 2016-12-07 14:10 十月狐狸 阅读(13990) 评论(20) 推荐(20) 编辑
摘要:英文文档: __import__(name, globals=None, locals=None, fromlist=(), level=0) This function is invoked by the import statement. It can be replaced (by impor 阅读全文
posted @ 2016-12-04 21:19 十月狐狸 阅读(10440) 评论(0) 推荐(0) 编辑
摘要:英文文档: zip(*iterables) Make an iterator that aggregates elements from each of the iterables. Returns an iterator of tuples, where the i-th tuple contai 阅读全文
posted @ 2016-12-04 13:25 十月狐狸 阅读(1081) 评论(0) 推荐(0) 编辑
摘要:英文文档: 说明 1. 当函数不接收参数时,其功能和locals函数一样,返回当前作用域内的局部变量。 2. 当函数接收一个参数时,参数可以是模块、类、类实例,或者定义了__dict__属性的对象。 阅读全文
posted @ 2016-12-03 23:49 十月狐狸 阅读(5588) 评论(0) 推荐(1) 编辑
摘要:英文文档: class type(object) class type(name, bases, dict) With one argument, return the type of an object. The return value is a type object and generall 阅读全文
posted @ 2016-12-03 23:22 十月狐狸 阅读(3633) 评论(0) 推荐(1) 编辑
摘要:英文文档: The constructor builds a tuple whose items are the same and in the same order as iterable‘s items. iterable may be either a sequence, a containe 阅读全文
posted @ 2016-12-03 17:19 十月狐狸 阅读(2442) 评论(0) 推荐(0) 编辑
摘要:英文文档: super([type[, object-or-type]]) Return a proxy object that delegates method calls to a parent or sibling class of type. This is useful for acces 阅读全文
posted @ 2016-12-01 23:44 十月狐狸 阅读(2652) 评论(0) 推荐(1) 编辑