获取字母在字母表中的序列

def get_alphabet_index(char):
	index = ord('B')-64
	return index

你可能感兴趣的:(Python)