详解Python的装饰器
Python 中的装饰器是你进入 Python 大门的一道坎,不管你跨不跨过去它都在那里。 为什么需要装饰器 我们假设你的程序实现了say_hello()和say_goodbye()两个函数。 def say_hello(): print "hello!" def say_goodbye(): print "hello!" # bug here if __na...
Python 中的装饰器是你进入 Python 大门的一道坎,不管你跨不跨过去它都在那里。 为什么需要装饰器 我们假设你的程序实现了say_hello()和say_goodbye()两个函数。 def say_hello(): print "hello!" def say_goodbye(): print "hello!" # bug here if __na...
Python 中的闭包不是一个一说就能明白的概念,但是随着你往学习的深入,无论如何你都需要去了解这么一个东西。 闭包的概念 我们尝试从概念上去理解一下闭包。 在一些语言中,在函数中可以(嵌套)定义另一个函数时,如果内部的函数引用了外部的函数的变量,则可能产生闭包。闭包可以用来在一个函数与一组“私有”变量之间创建关联关系。在给定函数被多次调用的过程中,这些私有变量能够保持其持久...
断言是测试的氧气,无断言,不测试。 Python Assert 为何不尽如人意 Python 中的断言用起来非常简单,你可以在assert后面跟上任意判断条件,如果断言失败则会抛出异常。 >>> assert 1 + 1 == 2 >>> assert isinstance('Hello', str) >>> assert is...
Assertion is the basics of testing. Why not using Python Assert Assertion in Python is pretty simple, you can assert any condition by assert statement. >>> assert 1 + 1 == 2 >>&...
处理 TFS 的问题备忘。 问题描述 Once you had update in TFS workspace for Jenkin TFS plugin, you might get error like bellow: 如果你把 Jenkins 中 TFS 插件更新过,那么你有可能会遇到 Mapping 错误的问题。 [workspace] $ "C:\Program Fil...
在国内很多时候不翻墙真的很难做开发,本篇博客收集了一些知名工具和类库的国内镜像,当你没有 VPN 时,说不定能帮上你的大忙。 淘宝镜像 淘宝的镜像更新速度非常及时,安装它在官网上说的,大概没 10 分钟会同步一次。 https://npm.taobao.org/ https://npm.taobao.org/mirrors 部分镜像列表...
谷歌浏览器的离线安装包还真有用。 安装到个人用户目录,请使用以下链接: Download Google Chrome Standalone Offline Installer (32-bit) Download Google Chrome Standalone Offline Installer (64-bit) 安装后所有用户可用,请使用以下链接: Googl...
按单词反转字符串是一道很常见的面试题。在 Python 中实现起来非常简单。 def reverse_string_by_word(s): lst = s.split() # split by blank space by default return ' '.join(lst[::-1]) s = 'Power of Love' print reverse_str...
Reverse string by word is a very popular interview question. In python you can solve it easily with code like below. def reverse_string_by_word(s): lst = s.split() # split by blank space by...
下划线在 Python 中有很特别的意义。 开门见山 下划线在 Python 中有特殊的意义,简单来说,可以总结成三点。 单下划线在前一般用于声明私有成员,比如 _private_var 单下划线在后一般用于命名已经被保留关键字占用的变量,比如 class_,type_ 双下划线一般被用于 Python 内置的特殊方法或者属性,比如 __name__,__file__...