- Hands-On Data Science and Python Machine Learning
- Frank Kane
- 153字
- 2021-07-15 17:15:00
Adding list to list
You can also change lists around. Let's say I want to add a list to the list. I can use the extend function for that, as shown in the following code block:
x.extend([7,8])
x
The output of the above code is as follows:
[1, 2, 3, 4, 5, 6, 7, 8]
I have my list of 1, 2, 3, 4, 5, 6. If I want to extend it, I can say I have a new list here, [7, 8], and that bracket indicates this is a new list of itself. This could be a list implicit, you know, that's inline there, it could be referred to by another variable. You can see that once I do that, the new list I get actually has that list of 7, 8 appended on to the end of it. So I have a new list by extending that list with another list.
推薦閱讀
- Practical Data Analysis Cookbook
- 流量的秘密:Google Analytics網站分析與優化技巧(第2版)
- Reporting with Visual Studio and Crystal Reports
- Learning C++ Functional Programming
- JavaScript Unlocked
- Python自動化運維快速入門
- CKA/CKAD應試教程:從Docker到Kubernetes完全攻略
- Expert Data Visualization
- Haxe Game Development Essentials
- PySpark Cookbook
- 區塊鏈技術與應用
- 人工智能算法(卷1):基礎算法
- 計算機應用基礎項目化教程
- C++從入門到精通(第6版)
- Exploring SE for Android