• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Python timemachine.xrange函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Python中xlrd.timemachine.xrange函数的典型用法代码示例。如果您正苦于以下问题:Python xrange函数的具体用法?Python xrange怎么用?Python xrange使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了xrange函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Python代码示例。

示例1: show

 def show(bk, nshow=65535, printit=1):
     if options.onesheet:
         try:
             shx = int(options.onesheet)
         except ValueError:
             shx = bk.sheet_by_name(options.onesheet).number
         shxrange = [shx]
     else:
         shxrange = range(bk.nsheets)
     for shx in shxrange:
         sh = bk.sheet_by_index(shx)
         nrows, ncols = sh.nrows, sh.ncols
         colrange = range(ncols)
         print(json.dumps([ "sheet", {
             "index": shx,
             "name": sh.name,
             "rows": sh.nrows,
             "cols": sh.ncols,
             "visibility": sh.visibility
         }]))
         if nrows and ncols:
             # Beat the bounds
             for rowx in xrange(nrows):
                 nc = sh.row_len(rowx)
                 if nc:
                     _junk = sh.row_types(rowx)[nc-1]
                     _junk = sh.row_values(rowx)[nc-1]
                     _junk = sh.cell(rowx, nc-1)
         for rowx in xrange(nrows-1):
             if not printit and rowx % 10000 == 1 and rowx > 1:
                 print("done %d rows" % (rowx-1,))
             show_row(bk, sh, rowx, colrange, printit)
         if nrows:
             show_row(bk, sh, nrows-1, colrange, printit)
         if bk.on_demand: bk.unload_sheet(shx)
开发者ID:pombredanne,项目名称:xlrd-parser,代码行数:35,代码来源:runxlrd-json.py


示例2: print_labels

 def print_labels(sh, labs, title):
     if not labs:return
     for rlo, rhi, clo, chi in labs:
         print("%s label range %s:%s contains:"
             % (title, xlrd.cellname(rlo, clo), xlrd.cellname(rhi-1, chi-1)))
         for rx in xrange(rlo, rhi):
             for cx in xrange(clo, chi):
                 print("    %s: %r" % (xlrd.cellname(rx, cx), sh.cell_value(rx, cx)))
开发者ID:ClayMason,项目名称:BlackrockFBP,代码行数:8,代码来源:runxlrd.py


示例3: count_xfs

 def count_xfs(bk):
     bk_header(bk)
     for shx in range(bk.nsheets):
         sh = bk.sheet_by_index(shx)
         nrows, ncols = sh.nrows, sh.ncols
         print("sheet %d: name = %r; nrows = %d; ncols = %d" %
             (shx, sh.name, sh.nrows, sh.ncols))
         # Access all xfindexes to force gathering stats
         type_stats = [0, 0, 0, 0, 0, 0, 0]
         for rowx in xrange(nrows):
             for colx in xrange(sh.row_len(rowx)):
                 xfx = sh.cell_xf_index(rowx, colx)
                 assert xfx >= 0
                 cty = sh.cell_type(rowx, colx)
                 type_stats[cty] += 1
         print("XF stats", sh._xf_index_stats)
         print("type stats", type_stats)
         print()
         if bk.on_demand: bk.unload_sheet(shx)
开发者ID:ClayMason,项目名称:BlackrockFBP,代码行数:19,代码来源:runxlrd.py


示例4: show

 def show(bk, nshow=65535, printit=1):
     bk_header(bk)
     if 0:
         rclist = xlrd.sheet.rc_stats.items()
         rclist = sorted(rclist)
         print("rc stats")
         for k, v in rclist:
             print("0x%04x %7d" % (k, v))
     if options.onesheet:
         try:
             shx = int(options.onesheet)
         except ValueError:
             shx = bk.sheet_by_name(options.onesheet).number
         shxrange = [shx]
     else:
         shxrange = range(bk.nsheets)
     # print("shxrange", list(shxrange))
     for shx in shxrange:
         sh = bk.sheet_by_index(shx)
         nrows, ncols = sh.nrows, sh.ncols
         colrange = range(ncols)
         anshow = min(nshow, nrows)
         print("sheet %d: name = %s; nrows = %d; ncols = %d" %
             (shx, REPR(sh.name), sh.nrows, sh.ncols))
         if nrows and ncols:
             # Beat the bounds
             for rowx in xrange(nrows):
                 nc = sh.row_len(rowx)
                 if nc:
                     _junk = sh.row_types(rowx)[nc-1]
                     _junk = sh.row_values(rowx)[nc-1]
                     _junk = sh.cell(rowx, nc-1)
         for rowx in xrange(anshow-1):
             if not printit and rowx % 10000 == 1 and rowx > 1:
                 print("done %d rows" % (rowx-1,))
             show_row(bk, sh, rowx, colrange, printit)
         if anshow and nrows:
             show_row(bk, sh, nrows-1, colrange, printit)
         print()
         if bk.on_demand: bk.unload_sheet(shx)
开发者ID:ClayMason,项目名称:BlackrockFBP,代码行数:40,代码来源:runxlrd.py


示例5: test_tidy_dimensions

 def test_tidy_dimensions(self):
     book = xlrd.open_workbook(from_this_dir("merged_cells.xlsx"))
     for sheet in book.sheets():
         for rowx in xrange(sheet.nrows):
             self.assertEqual(sheet.row_len(rowx), sheet.ncols)
开发者ID:jennyzhang8800,项目名称:grade_xblock,代码行数:5,代码来源:test_sheet.py


示例6: show_fonts

 def show_fonts(bk):
     print("Fonts:")
     for x in xrange(len(bk.font_list)):
         font = bk.font_list[x]
         font.dump(header='== Index %d ==' % x, indent=4)
开发者ID:ClayMason,项目名称:BlackrockFBP,代码行数:5,代码来源:runxlrd.py



注:本文中的xlrd.timemachine.xrange函数示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python xlsxwriter.Workbook类代码示例发布时间:2022-05-26
下一篇:
Python xlrd.xldate_as_tuple函数代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap