摘要: It's also worth noting that you can use * and ** when calling functions as well. This is a shortcut that allows you to pass multiple arguments to a fu 阅读全文
posted @ 2016-12-20 17:25 圆旭 阅读(170) 评论(0) 推荐(0) 编辑
摘要: # 定义user类型和user列表类型 #实现API逻辑 转自: https://segmentfault.com/a/1190000004004179?utm_source=tuicool&utm_medium=referral 阅读全文
posted @ 2016-12-20 16:26 圆旭 阅读(556) 评论(0) 推荐(0) 编辑
摘要: 在Python 2.4以上的的函数中偶尔会看到函数定义的上一行有@functionName的修饰,这一下这个语法细节,其实这有点像C语言带参数的宏操作,解释器读到这样的修饰之后,会先解析@后的内容,直接就把@下一行的函数或者类作为@后边的函数的参数,然后将返回值赋值给下一行修饰的函数对象。 def 阅读全文
posted @ 2016-12-20 14:18 圆旭 阅读(3420) 评论(0) 推荐(0) 编辑