摘要: ###字母转数字 def get_index(capital): """ 大写字母(Excel列头)转索引 :param capital: 'A' --> 0, 'AA' --> 26 :return: int """ number = 0 capital = capital.upper() for 阅读全文
posted @ 2021-09-03 11:01 cnblogs用户 阅读(390) 评论(0) 推荐(0) 编辑