【leetcode】113. 路徑總和 II
1.列表的建立:
mylist = [1, 2, 3]
2.列表的方法:
2.1index():返回指定資料所在位置的下標
1. 語法
``` python
列表序列.index(資料, 開始位置下標, 結束位置下標)
```
2. 快速體驗
``` python
name_list = ['Tom', 'Lily', 'Rose']
print(name_list.index('Lily', 0, 2)) # 1
```
> 注意:如果查詢的資料不存在則報錯。
2.2count():統計指定資料在當前列表中出現的次數
``` python
name_list = ['Tom', 'Lily', 'Rose']
print(name_list.count('Lily')) # 1
```
2.3in:判斷指定資料在某個列表序列,如果在返回True,否則返回False
``` python
name_list = ['Tom', 'Lily', 'Rose']
# 結果:True
print('Lily' in name_list)
# 結果:False
print('Lilys' in name_list)
```
2.4 not in:判斷指定資料不在某個列表序列,如果不在返回True,否則返回False
``` python
name_list = ['Tom', 'Lily', 'Rose']
# 結果:False
print('Lily' not in name_list)
# 結果:True
print('Lilys' not in name_list)
```
2.5 append():列表結尾追加資料。
1. 語法
``` python
列表序列.append(資料) # 直接修改源列表
```
``` python
name_list = ['Tom', 'Lily', 'Rose']
name_list.append('xiaoming')
# 結果:['Tom', 'Lily', 'Rose', 'xiaoming']
print(name_list)
```
``` python
name_list = ['Tom', 'Lily', 'Rose']
name_list.append(['xiaoming', 'xiaohong'])
# 結果:['Tom', 'Lily', 'Rose', ['xiaoming', 'xiaohong']]
print(name_list)
```
2.6 extend():列表結尾追加資料,如果資料是一個序列,則將這個序列的資料逐一新增到列表。
1. 語法
```python
列表序列.extend(資料) # 引數為一個序列,如果傳字串,字串也會被看成一個序列被追加
```
```python
name_list = ['Tom', 'Lily', 'Rose']
name_list.extend('xiaoming')
# 結果:['Tom', 'Lily', 'Rose', 'x', 'i', 'a', 'o', 'm', 'i', 'n', 'g']
print(name_list)
```
```python
name_list = ['Tom', 'Lily', 'Rose']
name_list.extend(['xiaoming', 'xiaohong'])
# 結果:['Tom', 'Lily', 'Rose', 'xiaoming', 'xiaohong']
print(name_list)
```
2.7 insert():指定位置新增資料。
1. 語法
``` python
列表序列.insert(位置下標, 資料)
```
2. 快速體驗
``` python
name_list = ['Tom', 'Lily', 'Rose']
name_list.insert(1, 'xiaoming')
# 結果:['Tom', 'xiaoming', 'Lily', 'Rose']
print(name_list)
```
2.8 del 刪除元素
1. 語法
``` python
del 目標
```
2. 快速體驗
2.1 刪除列表
``` python
name_list = ['Tom', 'Lily', 'Rose']
# 結果:報錯提示:name 'name_list' is not defined
del name_list
print(name_list)
```
2.2 刪除指定資料
``` python
name_list = ['Tom', 'Lily', 'Rose']
del name_list[0]
# 結果:['Lily', 'Rose']
print(name_list)
```
2.9 pop():刪除指定下標的資料(預設為最後一個),並返回該資料。
1. 語法
``` python
列表序列.pop(下標)
```
2. 快速體驗
``` python
name_list = ['Tom', 'Lily', 'Rose']
del_name = name_list.pop(1)
# 結果:Lily
print(del_name)
# 結果:['Tom', 'Rose']
print(name_list)
```
2.10 remove():移除列表中某個資料的第一個匹配項。
1. 語法
``` python
列表序列.remove(資料)
```
2. 快速體驗
``` python
name_list = ['Tom', 'Lily', 'Rose']
name_list.remove('Rose')
# 結果:['Tom', 'Lily']
print(name_list)
```
2.11 clear():清空列表
``` python
name_list = ['Tom', 'Lily', 'Rose']
name_list.clear()
print(name_list) # 結果: []
```
2.12 逆置:reverse()
``` python
num_list = [1, 5, 2, 3, 6, 8]
num_list.reverse()
# 結果:[8, 6, 3, 2, 5, 1]
print(num_list)
```
2.13 排序:sort()
1. 語法
``` python
列表序列.sort( key=None, reverse=False)
```
> 注意:reverse表示排序規則,**reverse = True** 降序, **reverse = False** 升序(預設)
2. 快速體驗
``` python
num_list = [1, 5, 2, 3, 6, 8]
num_list.sort()
# 結果:[1, 2, 3, 5, 6, 8]
print(num_list)
```
2.14 函式:copy()
``` python
name_list = ['Tom', 'Lily', 'Rose']
name_li2 = name_list.copy()
# 結果:['Tom', 'Lily', 'Rose']
print(name_li2)
3.列表的迴圈遍歷
3.1while
- 程式碼
name_list = ['Tom', 'Lily', 'Rose'] i = 0 while i < len(name_list): print(name_list[i]) i += 1
3.2 for
- 程式碼
name_list = ['Tom', 'Lily', 'Rose'] for i in name_list: print(i)