《Python核心編程》第二版第36頁第二章練習 續三 -Python核心編程答案-自己做的-

來源:互聯網
上載者:User

這裡列出的答案不是來自官方資源,是我自己做的練習,可能有誤。

2-15.
元素排序。
(a)讓使用者輸入三個數值並分別將它們報存到3個不同的變數中。不使用列表或排序演算法,自己寫代碼來對三個數由小到大排序。
(b)修改(a)的解決方案,使之從大到小排序。
【答案】
代碼如下:
SortList = [0, 1, 2]

for i in range(0,3):
    print 'Please input the No.', i+1, 'number to be sort'
    SortList[i] = float(raw_input())
print SortList
 
if SortList[0] < SortList[1]:
    i = SortList[0]
    SortList[0] = SortList[1]
    SortList[1] = i

if SortList[0] < SortList[2]:
    i = SortList[0]
    SortList[0] = SortList[2]
    SortList[2] = i
   
if SortList[1] < SortList[2]:
    i = SortList[1]
    SortList[1] = SortList[2]
    SortList[2] = i
    
print SortList
【注】這段代碼是從大到小排序,如果想修改成從小到大,把小於符號換成大於符號就可以了。

2-16.
檔案。鍵入2.15節的檔案顯示的代碼,然後運行它。看看能否在你的系統上正常工作。然後試一下其他的輸入檔案。
【答案】
代碼如下:
>>> filename = raw_input('Enter file name: ')
Enter file name: c:\test.txt
>>> fobj = open(filename, 'r')
>>> for eachLine in fobj:
...     print eachLine,
...
This is an apple.
>>> fobj.close()
>>>
【注】這裡假設有一個名為test.txt的檔案在C盤的根目錄下。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.