第7句哪里错了是什么问题,想法思路错了吗

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

慕田峪5529772

2022-02-15 18:52

# Enter a code

template = 'Life {0} ,you {1}.'

result = template.format('is short','need Python')

print(result) #

template ='Life {a},you{b}'

a = 'is short'

b ='need Python'

result = template.format(a = is short,b = need Python)

print(result)#


写回答 关注

1回答

  • 傻傻的怪咖
    2022-02-18 09:52:41

    我举个栗子,你看能不能发现你原本的错误:

    temple='I am{first},as well as{second}'
    a='smart'
    b='handsome'

    如果我这里要输出‘I am smart,as well as handsome’

    我应该这样写:

    result=temple.format(first=a,second=b)

    可以看出,format中的写法应该是使temple中”{ }”里的名“=”要插入的字符串所对应的变量名

    如果“{ }”中的名和变量名相同,就会冲突了

Python3 入门教程(新版)

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

154172 学习 · 1075 问题

查看课程

相似问题