不合格的程序猿
发布时间:2016-10-14 11:08:49
#/usr/bin/python #-*- coding: utf-8 -*-import xlrdimport xlwtimport mathimport stringdata = xlrd.open_workbook('/root/work/test/shell/key_words.xls')table = data.sheets()[0]nrows = table.nrowsncols = table.ncolsw = xlwt.Workbook(encoding='utf-8')ws = w.add_sheet('result').........【阅读全文】
发布时间:2016-03-11 16:08:49
第五章 对象和面向对象1. 模块、类、函数的doc_strings的调用方法(obj.__doc__)2. Python对象:万物皆对象,一切都可以赋值给变量或作为参数传递给函数3. import types和from types import FunctionType在调用FunctionType时的区别 from module import xxx使用场景: 如果你要经常访问模块的属性和方法,且不想一遍又一遍地敲入模块名 如果你想要有选择地导入某些属性和方法,而不想要其它的 import module 如果模块包含的属性和方法与你......【阅读全文】