python append()
>>> A = ['q','w','e','r']>>> A.extend(['t','y'])>>> A
['q','w','e','r','t','y']>>>len(A)6>>> B = ['q','w','e','r']>>> B.append(['t','y'])>>> B
['q','w','e','r', ['t','y']]>>>len(B)5
extend與append方法的相似之處在於都是將新接收到引數放置到已有列表的後面。而extend方法只能接收list,且把這個list中的每個元素新增到原list中。
而append方法可以接收任意資料型別的引數,並且簡單地追加到list尾部。
>>> a = [11,22,33]>>> a.extend([44])>>> a
[11,22,33,44]>>> a.extend('55')>>> a
[11,22,33,44,'5','5']#因為extend只接收list,所以將其拆分
相關文章
- 【Python有坑系列】numpy.append中有坑PythonAPP
- URLSearchParams append()APP
- jQuery append()jQueryAPP
- golang appendGolangAPP
- Append HintAPP
- append2 給append 新增回撥方法APP
- URLSearchParams append() 方法APP
- Python3中列表方法append()和extend()的區別PythonAPP
- Python之列表的append()方法最容易踩的坑及解決PythonAPP
- 【廖雪峰python入門筆記】list新增元素_append()和insert()Python筆記APP
- append()與html() 區別APPHTML
- nologgin和appendAPP
- jQuery的append和appendTojQueryAPP
- SAP ABAP Append structure 介紹APPStruct
- [原創]append_values hintAPP
- 使用 append 方法追加元素APP
- APPEND載入與DELETE操作APPdelete
- Nologging and append testAPP
- nolog和append的使用APP
- python迴圈遍歷字典: title_content_list.append([key, value])print(tiPythonAPP
- insert /*+ append */直接路徑插入APP
- append與 appendTo的區別APP
- APPEND,bulk collect,正常插入比較APP
- nologging與append ztAPP
- 臨時表的APPEND方式插入APP
- oracle nologging和appendOracleAPP
- insert 中append 用法詳解APP
- [Bash] Append the content at the beginning of the fileAPP
- 列表中的append,extend,+=,+的區別APP
- [golang]slice的坑:從append到共享GolangAPP
- PostgreSQLjson任意位置append功能實現SQLJSONAPP
- 【最佳化】hints之/*+append*/作業APP
- nologging和insert /*+append*/APP
- Append與Direct-Path Insert(一)APP
- Append與Direct-Path Insert(二)APP
- append和nologging的案例APP
- 關於append sql hint的實驗APPSQL
- 直接路徑插入 -- insert /*+append*/ into [zt]APP