亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定

第7句哪里錯了是什么問題,想法思路錯了嗎

# Enter a code

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

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

print(result) #

template ='Life {a},you'

a = 'is short'

b ='need Python'

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

print(result)#


正在回答

1 回答

我舉個栗子,你看能不能發現你原本的錯誤:

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中”{ }”里的名“=”要插入的字符串所對應的變量名

如果“{ }”中的名和變量名相同,就會沖突了

2 回復 有任何疑惑可以回復我~

舉報

0/150
提交
取消
Python3 入門教程(新版)
  • 參與學習       162644    人
  • 解答問題       1121    個

python3入門教程,讓你快速入門并能編寫簡單的Python程序

進入課程

第7句哪里錯了是什么問題,想法思路錯了嗎

我要回答 關注問題
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號