刪除包含特定值得所有列表元素
pets = ['cat','dog','goldfish','cat','rabit','cat']
print(pets)
while
'cat'
in pets:
pets.remove('cat')
print(pets)
執行結果如下:
[『cat』, 『dog』, 『goldfish』, 『cat』, 『rabit』, 『cat』]2 . 使用使用者輸入來填充字典[『dog』, 『goldfish』, 『rabit』]
# 設定乙個標誌,指出調查是否繼續
polling_active = true
while polling_active:
name = input("你叫什麼名字?")
response = input("將來有一天你想去哪個城市?")
# 將答案儲存在字典中
responses[name] = response
# 看看是否還有人要參與調查
repeat = input("還有沒有人要回答?")
ifrepeat == 'no':
polling_active = false
# 調查結束,顯示結果
print("\n--------調查結果--------")
forname,response in responses.items():
print(name + "想去" + response + "。")
入門學習 4
學習篇 上篇我們學會了如何建立乙個和資料庫表,並知道如何向資料庫表中新增記錄。那麼我們如何從資料庫表中檢索資料呢?1 從資料庫表中檢索資訊 實際上,前面我們已經用到了select語句,它用來從資料庫表中檢索資訊。select語句格式一般為 以前所使用的 表示選擇所有的列。2 查詢所有資料 mysql...
python基礎入門 4
range x,y 從x y 1 例如 range 2,5 裡面包含2,3,4元素 驗證 for i in range 2,5 print i 23 4for迴圈可以迭代任何可以迭代的物件 i 2,5,6,7,xiaoming true for x in i print x 25 67.xiaomi...
Python入門記錄4
importos fi open my.txt w fi.write 今天是2018年1月11日 寫入完直接讀會輸出空,因為指標已經在末尾 輸出當前指標位置 print fi.tell 設定指標回到檔案最初 fi.seek os.seek set print fi.readlines fi.clos...