python核心程式設計第二章練習答案

2021-08-27 04:11:09 字數 1669 閱讀 1448

迴圈和操作符(自己定義乙個列表的較簡單,下面的答案是使用者自己輸入列表)

方法一

sb=

後來發現這種方法只能處理0-9的數字

方法二:

但是這種只能每次輸入乙個數字

1: print ("1-->取五個數的和\n2-->取五個數的平均值\nx-->退出")

option=input("please input your options:")

if option=="1":

print ("(1)輸入五個數並求和")

i=0sum=0

for i in range(0,5):

print('please input %d number' % (i + 1))

sum+=int(input("the number:"))

i+=1

print ("the sum is:",sum)

elif option=="2":

sum=0

i=0print("(2)取五個數的平均值")

for i in range(0,5):

print('please input %d number' % (i + 1))

sum+=int(input("input the number: "))

i+=1

print (float(sum)/5)

elif option=="x"

or option=="x":

print ("quit!")

break

else:

print ("wrong option,please input agin")

option = input("please input your options:")

後面的好像都挺簡單的?

python核心程式設計第二章練習

2.5 分別使用while和for建立乙個迴圈 a 寫乙個while迴圈,輸出整數從0到10。要確保是從0到10,而不是從0到9或從1到10 b 做同 a 一樣的事,不過這次使用range 內建函式。a a 0while a 11 print a,end a 1 搞一搞 輸入任意整數,始終得到0到1...

Python核心教程 第二章

輸出hello world 核心筆記一 在互動式直譯器中顯示變數的值 通常當你想看變數內容時,你會在 中使用print 語句輸出。不過在互動式直譯器中,你可以用 print 語句顯示變數的字串表示,或者僅使用變數名檢視該變數的原始值。在下面的例子中,我們把乙個字串賦值給變數mystring,先用pr...

第二章 練習。

1.正因子問題。include include int main printf d count return 0 注意 if if 如果是 if n i 0 count if i n i count 會比正確結果多一。可以用以下程式檢驗,看中間結果。include include int main ...