摘要:
def info(object, spacing=10, collapse=1): """Print methods and doc strings. Takes module, class, list, dictionary, or string.""" methodList = [method for method in dir(object) if callable(getattr(obje... 阅读全文
摘要:
【Dive Into Python 1到3章】 书:Dive Into Python 本书存放在 http://diveintopython.org/ (英文原版) 和 http://www.woodpecker.org.cn/diveintopython(中文版)。 工具:ActivePython、UliPad Python 既是动态类型语言 (因为它不使用显示数据类型声明),又是强类型语言... 阅读全文