To see a world in a grain of sand.
And a heaven in a wild flower
Hold infinity in the palm of your hand.
And eternity in an hour
一花一世界
一沙一天堂
掌中握无限
霎那成永恒
星期三, 四月 26, 2006
Python 函数注释的有趣功能
我们可以给一个函数加上功能说明。 允许用户在使用的时候,可以查看说明 语法: print 函数名.__doc__(注意是两个下画线连起来) def test(): *** this is a test function ***