python, del[] 用法, 笨方法學python
#coding=utf-8
city = ['GZ', 'SZ', 'HY', 'ZH', 'XX']
def del_function():
print "This is a function to remove an element from list\n."
print "Before"
for x in city:
print "This is before list: %s\n" % x
del city[1:3] #刪除多個元素。
del city[0] #刪除1個元素
#del city #刪除整個list
print "I just using del to remove an element from list: city."
print "AFTER"
for y in city:
print "This is after list:%s\n" % y
del_function()
1)del用於list列表操作,刪除一個或者連續幾個元素
相關文章
- 笨方法學python加分習題18Python
- 笨方法學python加分習題19Python
- 笨方法學Python3 習題3Python
- Python __del__方法:銷燬物件Python物件
- assert語句,python, 笨辦法學pythonPython
- ex0-python環境搭建 -powershell建立目錄 [笨方法學python]Python
- python __del__的使用Python
- 笨辦法學Python習題48Python
- 笨辦法學python習題43Python
- 《笨方法學python3》習題46.2 建立骨架專案目錄Python
- 《笨辦法學Python》 第33課手記Python
- 笨辦法學 Python · 續 練習 39:SQL 建立PythonSQL
- Python類中__del__()、__call__()、__repr__()、__new__()、__hash__()方法Python
- 笨辦法學C 練習2:用Make來代替PythonPython
- 每週一書:162頁《笨辦法學 Python》分享!Python
- 【Python學習教程】Python的5種高階用法!Python
- python with 用法Python
- 笨方法學C 筆記 (day1)筆記
- python學習筆記-list的用法Python筆記
- Python如何快速學習?Python學習方法技巧!Python
- python print 用法Python
- python xpath用法Python
- Python Dict用法Python
- Python yield 用法Python
- python match用法Python
- 詳解Python魔法函式,__init__,__str__,__del__Python函式
- 笨辦法學Python – 習題8-10: Printing & Printing, PrintingPython
- 《“笨辦法”學Python(第3版)》點評贈書獲獎名單Python
- [人郵贈書]《“笨辦法”學Python(第3版)》點評贈書Python
- [Python 基礎] Python 例項方法、靜態方法和類方法詳解 (包含區別和用法)Python
- Python學習筆記|Python之特殊方法Python筆記
- Python字典dict用法Python
- python pil resize 用法Python
- python-lambda用法Python
- 【python】list 的用法Python
- 學習 python logging(1): 基本用法Python
- Python學習筆記-yield用法及優點Python筆記
- 求推薦,有沒有類似《笨辦法學 python》的書用來學 Java 的?PythonJava