问答详情
源自:3-7 Python的字符串format

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

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

不理解怎么用的

提问者:VickyV 2020-09-22 15:29

个回答

  • 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操作