摘要: from openpyxl.utils import get_column_letter, column_index_from_string # 根据列的数字返回字母 print(get_column_letter(2)) # B # 根据字母返回列的数字 print(column_index_from_string('D')) # 4 --------------------- 本文... 阅读全文
posted @ 2018-09-21 14:39 垄上行 阅读(8404) 评论(0) 推荐(1) 编辑