這是接著剛剛的部落格
用if語句處理列表
(1)檢查特殊元素
a=[『as』,『zx』,『qw』]
for er in a:
print(「you are 「+er+」.」)
print("\nthe best")
you are as.
you are zx.
you are qw.
the best
asd=[『as』,『zx』,『qw』]
for a in asd:
if a==『zx』:
print(「sorry.」) \如果其中有這個元素,則顯示sorry
else:
print(「you are 「+a+」.」) \檢查其它的特殊元素,用其中的東西輸出
print("\nover!")
you are as.
sorry.
you are qw.
over!
(2)確定列表不是空的
asd=
if asd:
for a in asd:
print(「you are 「+asd+」.」)
print("\nover!")
else:
print(「are you sure do it?」)
are you sure do it?
(3)使用多個列表
asd=[『a』,『s』,『d』,『f』,『g』,『h』,『j』]
zxc=[『a』,『b』,『s』]
for q in zxc: \用for迴圈先瀏覽zxc中的值
if q in asd: \用if語句判斷zxc的值是否在asd中存在
print(「yes」)
else:
print(「no」)
print("\nover!")
yesno
yesover!
我的python學習歷程
今天是使用檔案的內容,包含一百萬位的大檔案,以及寫入檔案。1.使用檔案內容 asd zxc.txt with open asd as qwe line qwe.readline 逐行讀取檔案中的資料 rt 建立乙個空列表用於儲存資料 for line in lines 用for迴圈遍歷原檔案中的所有...
我的python學習歷程
快要期末考試了,最近一直在進行期末考試的複習工作,所以沒來得及更新部落格,抱歉了,今天進行python基礎中最後一部分測試 的學習。1.測試函式 在測試函式前,首先需要建立乙個函式進行測試,在這裡建立乙個名字的函式進行測試。def a asd first,last all asd first las...
python 我的學習歷程 筆記和資源
學習python也有很長時間了,開始記錄下一些心得。python專案之 ftp伺服器 python專案之 詞典的實現 python專案之 英漢詞典 帶gui tkinter python專案之 路由器抓取器 python專案之 天氣 優化版 python專案之 天氣程式 帶gui python專案之...