1# 方式一2var = 'Hello {0}'.format('World')3# 方式二4var = 'Hello {name}'.format(name = 'World') 2.15 字符串中插入变量 — python3-cookbook 3.0.0 文档