摘要:
Today,We will talk some about the argument and arguments ...#!/usr/bin/pythondef fun(*args): for value in args: print valueif __name__ == '_... 阅读全文
摘要:
Why we need the decorator in python ?Let's see a example:#!/usr/bin/pythondef fun_1(x): return x*2 def fun_2(x): return x*x*2if __name__ == '__m... 阅读全文