result = template.format(w = world, c = china, b = beijing, i = imooc)中的“.”是什么作用

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

VickyV

2020-09-22 15:29

result = template.format(w = world, c = china, b = beijing, i = imooc)中的“.”是什么作用

不理解怎么用的

写回答 关注

3回答

  • qq_棠梨煎雪故人来_03907185
    2020-09-26 16:20:34
    已采纳

    你可以理解为调用函数,让template这个对象调用format函数,大多数编程语言里"."都可以这么理解。

  • xir0905
    2020-10-09 11:09:52

    对template进行format函数调用

  • qq_慕莱坞6371441
    2020-09-22 16:01:37

    对template执行format操作

Python3 入门教程(新版)

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

154167 学习 · 1075 问题

查看课程

相似问题