如何在python中将列索引号显示为2d数组中的字母?

时间:2017-02-02 04:01:06

标签: python arrays list 2d

我需要在我的程序中将列索引显示为字母,比如c3,而不是2,3 [a是0,因此c将是2]

1 个答案:

答案 0 :(得分:1)

如果你只对26个小写字符感兴趣,那就可以了:

alph = 'abcdefghijklmnopqrstuvwxyz'
startIndex  = (2,3)
endIndex = (alph[startIndex[0]], startIndex[1])
print(endIndex[0] + str(endIndex[1]))