print("{}".format(123))
format不用指明打印参数的类型,使用起来及其方便
{}
: 使用大括号再包裹一层print("[{:<10s}]".format("1")) //> 左对齐 print("[{:>10s}]".format("1")) //> 右对齐 print("[{:.>10s}]".format("1")) //> 不足补齐output
>>> print("[{:<10s}]".format("1")) [1 ] >>> print("[{:<10s}]".format("1")) [ 1] >>> print("[{:<10s}]".format("1")) [.........1]
print("[{:.>10b}]".format(0x10)) //> 左对齐, 补齐output
>>> print("[{:.>10b}]".format(0x10)) [.....10000]