You are viewing a single comment's thread from:RE: [DA series - Learn Python with Steem #05] 基本資料結構View the full contextkona (66)in #da-learnpythonwithsteem • 6 years ago Dictionary 不懂使用.format(key,value),所以多了{ },怎麼辦?
@antonsteemit ...
Posted using Partiko Android
你這個呼叫外援的操作真的666666🤦♀️
他不是外援,是老師,我只是討論課綱的跟開教室的人 LOL
若是印出整個dictionary 就會有含
{}
你的
hw_list
本身就是一個字典,所以直接印出來就會出現 {}包在字典外圍。.format
的用法是將字串中的某一個東西取代為函數中的東西例如
' 今天是 {} 月 {} 日'.format(5,19)
就會分別把5, 19填入兩個框框之中:
今天是5月5日
以你的例子可以寫成:
print(' {} : {} :{} '.format(m, hw_list[m], a))
明白,謝謝解答,讓我再試試🙏🙏🙏