int可以将任意整数转换成10进制数
print("{:>15d}".format(int("ABCDEF", 16))) print(str(int("ABCDEF", 16)).rjust(15))
字符串的对齐方法