那时候刚好下着雨,柏油路面湿冷冷的,还闪烁着青、黄、红颜色的灯火。
吹来一阵风翻开这记忆
往事好像是昨天的小溪
这照片中有你
这照片中有我
我们一直就未曾远离
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
__author__ = 'yinzhuoqun'
def outer(args):
def inner(fun):
print("this is inner start ")
fun()
print("this is %s"%args)
print("inner finished")
return inner
@outer("hello")
def hello():
print("hello word")