1. 字典-->列表
arr = list(dic.items()) [( 'key', value ),()]
2.字符串格式化输出
print("{0:<10}{1:>5}".format('hello', 1234))
0:<10 :左对齐
0:>5 右对齐