1.切片列印
testlist=['cos','
adi','
momo
','toka
','wwc
','qqc']
#列印前三個元素
print('
the first three items in the list are:
',testlist[0:3])
#列印中間三個元素
print('
three items from the middle of the list are:
',testlist[1:4])
#列印後三個元素
print('
the last three items in the list are:
',testlist[-3:])
2.複製副本和迴圈列印
testlist=['cos','
adi','
momo
','toka
','wwc
','qqc']
testlistcopy=testlist[:]#
直接寫列表名代表指向的複製,而不是複製建立副本
123321')
for a in
testlist:
(a)for b in
testlistcopy:
print(b)
第五章 動手試一試
5 1 條件測試 編寫一系列條件測試 將每個測試以及你對其結果的 和實際結 果都列印出來。5 2更多的條件測試 你並非只能建立10個測試。如果你想嘗試做更多的比較,可再編寫一些測試,並將它們加入到conditional tests.py 中。對於下面列出的各種測試,至少編寫乙個結果為 true 和 ...
第一章 動手試一試
動手試一試 本章的練習都是探索性的,但從第2章開始將要求你用那一章學到的知識來解決問題。1 1 python.org 瀏覽python主頁 尋找你感興趣的主題。你對python越熟悉,這個 對你來說就越有用。1 2 輸入錯誤 開啟你剛建立的檔案helo world.py,在 中新增乙個輸入錯誤,再執...
Python程式設計 從入門到實踐的動手試一試答案
3 1 姓名 names qiqi danliang mingliang peng for x in range 0,4 print names x 3 2 問候語 names qiqi qanliang mingliang peng for x in range 0,4 print hello,n...