Python練習題2

來源:互聯網
上載者:User

標籤:

  如果真的想學精,學什麼都不是好學的,如果真的想把Python學的出神入化,幾乎自己想做什麼都可以,就要下定恒心,堅持下去。

接下來繼續更新Python練習題2,通過更新前一部的練習題讓自己也學到了不少東西

1.取任意小於1美元的金額,然後計算可換成哪幾種硬幣,分別有幾個?硬幣有1美分、5美分、10美分、25美分4種,如0.76美元可換3個25美分、1枚1美分

 1 #encoding=utf-8 2 __author__ = ‘heng‘ 3 from copy import deepcopy      #對於要改變字典時,要記住是要深度複製,要不然原始的字典也會受影響 4 money = float(raw_input("please enter the money(dollar):")) 5 money = int(100*money) 6 moneydic = {25:0,10:0,5:0,1:0} 7 for key in moneydic: 8     if money >= key: 9         moneydic[key] = int(money/key)10         money = int(money % key)11 moneydic1 = deepcopy(moneydic)      #這裡進行深度複製12 for key in moneydic:13     if moneydic[key] == 0:14         del moneydic1[key]         #因為進行了深度複製,所以在進行for迴圈迭代時才不會報迭代對象改變的錯誤15 16 for key in moneydic1:17     print("%s the %s cent "%(moneydic1[key],key)),

 

Python練習題2

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.