摘要: 把函数当参数传递# 函数参数传递# 面向对象编程就是把对象传来传去# 面向函数编程就是把函数传来传去def mytest(num): return num * 2 # # 不光可以传递变量,还可以传递函数def convert(func, seq): print 'convert... 阅读全文
posted @ 2016-01-02 18:43 Bodi 阅读(639) 评论(0) 推荐(0) 编辑
摘要: #--encoding:utf-8--try: float('abc')except Exception,e: print e try: float(1.2)except Exception,e: print efinally: print 'Done!' #1... 阅读全文
posted @ 2016-01-02 13:48 Bodi 阅读(593) 评论(0) 推荐(0) 编辑