Python成長之路第二篇(2)_列表元組內置函數用法

来源:http://www.cnblogs.com/bj-xy/archive/2016/02/08/5185006.html
-Advertisement-
Play Games

列表元組內置函數用法list 元組的用法和列表相似就不一一介紹了 1)def append(self, p_object):將值添加到列表的最後 # real signature unknown; restored from __doc__ """ L.append(object) -- appen


列表元組內置函數用法list

元組的用法和列表相似就不一一介紹了

1)def append(self, p_object):將值添加到列表的最後

# real signature unknown; restored from __doc__

""" L.append(object) -- append object to end """

pass

(2)def count(self, value): 值的出現次數

# real signature unknown; restored from __doc__

""" L.count(value) -> integer -- return number of occurrences of value """

return 0

(3)def extend(self, iterable): 擴展列表通過添加元素

clip_image002

# real signature unknown; restored from __doc__

""" L.extend(iterable) -- extend list by appending elements from the iterable """

pass

(4)def index(self, value, start=None, stop=None): 返回第一次出現定義某隻的下標

# real signature unknown; restored from __doc__

"""

L.index(value, [start, [stop]]) -> integer -- return first index of value.

Raises ValueError if the value is not present.

"""

return 0

(5)def insert(self, index, p_object):指定下標插入元素

# real signature unknown; restored from __doc__

""" L.insert(index, object) -- insert object before index """

pass

(6)def pop(self, index=None):刪除並返回指定下標的值,如果沒有指定下標最後一個返回

clip_image004

# real signature unknown; restored from __doc__

"""

L.pop([index]) -> item -- remove and return item at index (default last).

Raises IndexError if list is empty or index is out of range.

"""

pass

(7)def remove(self, value): 移除列表中的指定值第一個

clip_image006

# real signature unknown; restored from __doc__

"""

L.remove(value) -- remove first occurrence of value.

Raises ValueError if the value is not present.

"""

pass

(8)def reverse(self): 翻轉

clip_image008

# real signature unknown; restored from __doc__

""" L.reverse() -- reverse *IN PLACE* """

pass

(9)def sort(self, cmp=None, key=None, reverse=False):比較大小

數字按照大小比較

中文按照unicode比較

# real signature unknown; restored from __doc__

"""

L.sort(cmp=None, key=None, reverse=False) -- stable sort *IN PLACE*;

cmp(x, y) -> -1, 0, 1

"""

pass

(10)def __add__(self, y): 加

clip_image010

# real signature unknown; restored from __doc__

""" x.__add__(y) <==> x+y """

pass

(11)def __contains__(self, y):包含

# real signature unknown; restored from __doc__

""" x.__contains__(y) <==> y in x """

pass

(12)def __delitem__(self, y): 刪除單個序列元素

# real signature unknown; restored from __doc__

""" x.__delitem__(y) <==> del x[y] """

pass

(13)def __delslice__(self, i, j): 刪除序列片斷

# real signature unknown; restored from __doc__

"""

x.__delslice__(i, j) <==> del x[i:j]

Use of negative indices is not supported.

"""

pass

(14)def __eq__(self, y): 等於

# real signature unknown; restored from __doc__

""" x.__eq__(y) <==> x==y """

pass

(15)def __getattribute__(self, name): 取屬性;內建 getattr();總是被調用

# real signature unknown; restored from __doc__

""" x.__getattribute__('name') <==> x.name """

pass

(16)def __getitem__(self, y): 得到單個序列元素

# real signature unknown; restored from __doc__

""" x.__getitem__(y) <==> x[y] """

pass

(17)def __getslice__(self, i, j): 得到序列片斷

# real signature unknown; restored from __doc__

"""

x.__getslice__(i, j) <==> x[i:j]

Use of negative indices is not supported.

"""

pass

(18)def __ge__(self, y):大於等於

# real signature unknown; restored from __doc__

""" x.__ge__(y) <==> x>=y """

pass

(19)def __gt__(self, y):大於

# real signature unknown; restored from __doc__

""" x.__gt__(y) <==> x>y """

pass

(20)def __iadd__(self, y):

# real signature unknown; restored from __doc__

""" x.__iadd__(y) <==> x+=y """

pass

(21)def __imul__(self, y):

# real signature unknown; restored from __doc__

""" x.__imul__(y) <==> x*=y """

pass

(22)def __init__(self, seq=()): _init__方法在類的一個對象被建立時,馬上運行

# known special case of list.__init__

"""

list() -> new empty list

list(iterable) -> new list initialized from iterable's items

# (copied from class doc)

"""

pass

(23)def __iter__(self): 創建迭代類;內建 iter()

# real signature unknown; restored from __doc__

""" x.__iter__() <==> iter(x) """

pass

(24)def __len__(self): 序列中項的數目長度

# real signature unknown; restored from __doc__

""" x.__len__() <==> len(x) """

pass

(25)def __le__(self, y):小於等於

# real signature unknown; restored from __doc__

""" x.__le__(y) <==> x<=y """

pass

(26)def __lt__(self, y):小於

# real signature unknown; restored from __doc__

""" x.__lt__(y) <==> x<y """

pass

(27)def __mul__(self, n): 重覆;*操作符相乘

# real signature unknown; restored from __doc__

""" x.__mul__(n) <==> x*n """

pass

@staticmethod # known case of __new__

(28)def __new__(S, *more) 構造器(帶一些可選的參數) ;通常用在設置不變數據類型的子類。

: # real signature unknown; restored from __doc__

""" T.__new__(S, ...) -> a new object with type S, a subtype of T """

pass

(29)def __ne__(self, y):不等於

# real signature unknown; restored from __doc__

""" x.__ne__(y) <==> x!=y """

pass

(30)def __repr__(self): 對機器友好

real signature unknown; restored from __doc__

""" x.__repr__() <==> repr(x) """

pass

(31)def __reversed__(self): 接受一個序列作為參數,返回一個以逆序訪問的迭代器(PEP 322)

# real signature unknown; restored from __doc__

""" L.__reversed__() -- return a reverse iterator over the list """

pass

(32)def __rmul__(self, n): 反向相乘

# real signature unknown; restored from __doc__

""" x.__rmul__(n) <==> n*x """

pass

(33)def __setitem__(self, i, y): 設置單個序列元素

# real signature unknown; restored from __doc__

""" x.__setitem__(i, y) <==> x[i]=y """

pass

(34)def __setslice__(self, i, j, y): 設置序列片斷

# real signature unknown; restored from __doc__

"""

x.__setslice__(i, j, y) <==> x[i:j]=y

Use of negative indices is not supported.

"""

pass

(35)def __sizeof__(self): 查看占用記憶體的函數

# real signature unknown; restored from __doc__

""" L.__sizeof__() -- size of L in memory, in bytes """

pass

__hash__ = None

list


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 一、初入裝飾器 1、首先呢我們有這麼一段代碼,這段代碼假如是N個業務部門的函數 1 def f1(aaa): 2 print('我是F1業務') 3 if aaa == 'f1': 4 return 'ok' 5 6 def f2(aaa): 7 print('我是F2業務') 8 if aaa =
  • 複習: 1、國際化 1)要jsp頁面中,引入資源文件的信息(資源標識,fmt:set base="msg",語言代碼,區域代碼 2)要有對應的資源文件,msg_zh_CN.properties,編碼 3)要使用fmt標簽,引入資源文件中,key,key=value.利用動作指令taglib 來添加,
  • 筆記信息 複習: css的常用樣式: border background padding margin float position 定位 top left 確定div在頁面中的位置,這兩個值可以為負數。 css+div 佈局方式 css+div+table 先由div劃分大塊兒,再由table進行
  • 1 #include<stdio.h> 2 #include<stdlib.h> 3 4 typedef struct Node{ 5 int data; 6 struct Node* next; 7 }Node,*LinkList; 8 9 void InitialList(LinkList *L
  • 說明:本文主要參考自《分散式Java應用:基礎與實踐》 1、JVM的調優主要是記憶體的調優,主要調兩個方面: 各個代的大小 垃圾收集器選擇 2、各個代的大小 常用的調節參數 -Xmx -Xms -Xmn -XX:SurvivorRatio -XX:MaxTenuringThreshold -XX:Pe
  • 需要知道一些常規的正則表達式語句,然後可以仿照規則寫出一下正則表達式語句。然後是關於junit測試. 知道了一個之前看過的文檔,然後有功夫就看一下那個文檔就可以,或者後面找時間搜索一下。 正則表達式是一個字元串: 由^開頭 由$結尾。 []表示可取值的範圍。 \\d表示數字。 下麵兩個表達式等效:
  • esp8266的STM32驅動,數據發送接收由DMA完成,釋放CPU。
  • 1、垃圾回收機制: (1)沒有引用變數指向的對象,就是垃圾。 舉例: Test t = new Test(); t=null; 那麼之前創建的對象就是垃圾。 (2)對象沒有被使用是另外一種垃圾。 new Test(); new Test().toString(); 區別在於第一個對象很明顯沒有指向,
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...