format

来源:3-7 Python的字符串format

weixin_慕用5198970

2021-10-04 10:57

# 指定{}的名字w,c,b,i
template = 'Hello {w}, Hello {c}, Hello {b}, Hello {i}.'
world = 'World'
china = 'China'
beijing = 'Beijing'
imooc = 'imooc'
# 指定名字对应的模板数据内容
result = template.format(w = world, c = china, b = beijing, i = imooc)
print(result)
# ==> Hello World, Hello China, Hello Beijing, Hello imooc.
中间把大写赋值给小写的代码可以取消吗?

写回答 关注

1回答

  • weixin_慕运维3398477
    2021-10-04 19:33:01

    可以不用,但是在下面要赋值给w,c,i

    # 指定{}的名字w,c,b,i
    template = 'Hello {w}, Hello {c}, Hello {b}, Hello {i}.'
    result = template.format(w = 'World', c = 'China', b = 'Beijing', i = 'imooc')
    print(result)
    # ==> Hello World, Hello China, Hello Beijing, Hello imooc.

Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154155 学习 · 1075 问题

查看课程

相似问题