s.rjust(3,'0') 将s设置为右对齐左端补0长度为3的str,若s本身长度大于3,返回s
进制转换:
其他进制转10进制
int('0xf',16) = 15
int()可以实现转到10进制
hex()转到16进制
bin()转到二进制
oct()转到八进制