转自 http://blog.csdn.net/xueshijun666/article/details/18151055 // var ret = $("#in_store_list_details_grid_table").getChangedCells('dirty'); // Returns the changed cells. // var ret = $("#in_store_list_details_grid_table").getChangedCel
在我们的bootcamp训练营中,学员们介绍了一些工具和库来扩展他们代码的能力.Kalina,目前我们JavaScript学员中的一员,列举了这些工具,想和其它爱好代码的小伙伴一起分享. 点击看大图 Ivan Storck,我们JavaScript训练营的指导员,把Kalina列举的工具绘制成下面这个思维导图: 一般的工具 脚手架工具(帮助启动项目) Yeoman-Yeoman是一个强健且固执的客户端堆栈,其包含一些能帮助开发人员快速构建漂亮web应用程序的工具和框架. 构建工具(自动化的) G
import xlrd data = xlrd.open_workbook(EXCEL_PATH) table = data.sheet_by_index(0) lines = table.nrows cols = table.ncols print u'The total line is %s, cols is %s'%(lines, cols) # 读取某个单元格 table.cell(x, y).value ''' x : 行 y : 列 行/列都是从0开始 ''' In [1]: imp