标签: python arrays list 2d
我需要在我的程序中将列索引显示为字母,比如c3,而不是2,3 [a是0,因此c将是2]
答案 0 :(得分:1)
如果你只对26个小写字符感兴趣,那就可以了:
alph = 'abcdefghijklmnopqrstuvwxyz' startIndex = (2,3) endIndex = (alph[startIndex[0]], startIndex[1]) print(endIndex[0] + str(endIndex[1]))