标签:
1,10进制转成26进制,但需要注意先减1。
2,chr(i):返回整数i对应的ASCII字符。与ord()作用相反。
3,逆序返回可以直接用res[::-1]。
4,python中string类型的数据没有append(var), insert(index,var),pop(var)等list所拥有的方法,需要特别的注意.
5,python不用像c++那样声明数据类型,但也可以声明,如string=‘‘(字符串),list=[](列表),tuple=(1,1,2,3,)(元组声明后不能更改)
class Solution: # @param {integer} n # @return {string} def convertToTitle(self, n): flag=n string=‘‘ while n!=0: rem=(n-1)%26 n=(n-1)/26 rem=chr(rem+65) string+=(rem) return string[::-1]
标签:
原文地址:http://www.cnblogs.com/qiaozhoulin/p/4568309.html