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

來源:互聯網
上載者:User

2-6.
條件判斷。判斷一個數是正數還是負數,或者是0。開始先用固定的數值,然後修改你的代碼支援使用者輸入數值再進行判斷。
【答案】
代碼如下:
a = float(raw_input("Please input a number ... "))
if a == 0:
    print "The number you input is Zero"
elif a > 0:
    print "The number you input is Positive"
else:
    print "This is a negative number"

2-7.
迴圈和字串。從使用者那裡接受一個字串輸入,然後逐字元顯示該字串。先用while迴圈實現,然後再用for迴圈實現。
【答案】
代碼如下:
a = raw_input("Please input a string ... ")
print 'Display in for loop:'
for i in a:
    print i,
print '\nDisplay in while loop:'
j = 0
while (j < len(a)):
    print a[j]
    j = j + 1

2-8.
迴圈和操作符。建立一個包含五個固定數值的列表或元組,輸出他們的和。然後修改你的代碼為接受使用者輸入數值。分別使用while和for迴圈實現。
【答案】
代碼如下:
# Using while loop
i = 0
total = 0
a = [1, 2, 3, 4, 5]
while (i < 5):
    print 'Please input number', i+1
    a[i] = float(raw_input())
    total = total + a[i]
    i = i + 1
print 'The total is', total

# Using for loop
total = 0
a = [1, 2, 3, 4, 5]
for i in range(0, 5):
    print 'Please input number', i+1
    a[i] = float(raw_input())
    total = total + a[i]
print 'The total is', total

2-9.
迴圈和操作符。建立一個包含五個固定數值的列表或元組,輸出他們的平均值。本練習的痛點之一是通過除法得到平均值。你會發現整型除會截去小數,因此你必須使用浮點除以得到更精確的結果。float()內建函數可以協助你實現這一功能。
【答案】
代碼如下:
i = 0
total = 0
a = [1, 2, 3, 4, 5]
while (i < 5):
    print 'Please input number', i+1
    a[i] = float(raw_input())
    total = total + a[i]
    i = i + 1
print 'The average is', total / 5.

# Using for loop
total = 0
a = [1, 2, 3, 4, 5]
for i in range(0, 5):
    print 'Please input number', i+1
    a[i] = float(raw_input())
    total = total + a[i]
print 'The average is', total / 5.

2-10.
帶迴圈和條件判斷的使用者輸入。使用raw_input()函數來提示使用者輸入一個1和100之間的數,如果使用者輸入的數值滿足這個條件,顯示成功並退出。否則顯示一個錯誤資訊然後再次提示使用者輸入數值,直到滿足條件為止。
【答案】
代碼如下:
t = 1
while (t):
    a = float(raw_input('Please input a number between 1 and 100: ... '))
    if a < 100 and a > 1:
        print 'Your have input a number between 1 and 100.'
        t = 0
    else:
        print 'Please try again ...'
【未完】這裡並沒有檢查輸入不是數位情況。

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

相關文章

聯繫我們

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