print("from {0} to {1}".format("a","b"))
print("from {} to {}".format("b","c"))
结果:
from a to b
from b to c
两种format形式都可以。
p.s.
在简书app上输入markdown的时候,需要在app设置里再开启一次的,默认是富文本。
print("from {0} to {1}".format("a","b"))
print("from {} to {}".format("b","c"))
结果:
from a to b
from b to c
两种format形式都可以。
p.s.
在简书app上输入markdown的时候,需要在app设置里再开启一次的,默认是富文本。