一、功能描述

实现类似 Excel 中的列序号功能。

二、代码

def getChars(length):
    return [getChar(index) for index in range(length)]

def getChar(number):
    factor, moder = divmod(number, 26) # 26 字母个数
    modChar = chr(moder + 65)          # 65 -> 'A'
    if factor != 0:
        modChar = getChar(factor-1) + modChar # factor - 1 : 商为有效值时起始数为 1 而余数是 0
    return modChar

三、结果

Python阿拉伯数字转中文数字 python 数字转字母_Python阿拉伯数字转中文数字