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 ...'
【未完】這裡並沒有檢查輸入不是數位情況。
這裡列出的答案不是來自官方資源,是我自己做的練習,可能有誤。