Unify the comment style of python codes

This commit is contained in:
krahets
2023-04-09 05:30:02 +08:00
parent 5ddcb60825
commit 10e2180013
53 changed files with 109 additions and 106 deletions
+11 -11
View File
@@ -33,7 +33,7 @@
=== "Python"
```python title="list.py"
""" 初始化列表 """
# 初始化列表
# 无初始值
list1: List[int] = []
# 有初始值
@@ -131,10 +131,10 @@
=== "Python"
```python title="list.py"
""" 访问元素 """
# 访问元素
num: int = list[1] # 访问索引 1 处的元素
""" 更新元素 """
# 更新元素
list[1] = 0 # 将索引 1 处的元素更新为 0
```
@@ -249,20 +249,20 @@
=== "Python"
```python title="list.py"
""" 清空列表 """
# 清空列表
list.clear()
""" 尾部添加元素 """
# 尾部添加元素
list.append(1)
list.append(3)
list.append(2)
list.append(5)
list.append(4)
""" 中间插入元素 """
# 中间插入元素
list.insert(3, 6) # 在索引 3 处插入数字 6
""" 删除元素 """
# 删除元素
list.pop(3) # 删除索引 3 处的元素
```
@@ -429,12 +429,12 @@
=== "Python"
```python title="list.py"
""" 通过索引遍历列表 """
# 通过索引遍历列表
count: int = 0
for i in range(len(list)):
count += 1
""" 直接遍历列表元素 """
# 直接遍历列表元素
count: int = 0
for n in list:
count += 1
@@ -567,7 +567,7 @@
=== "Python"
```python title="list.py"
""" 拼接两个列表 """
# 拼接两个列表
list1: List[int] = [6, 8, 7, 10, 9]
list += list1 # 将列表 list1 拼接到 list 之后
```
@@ -647,7 +647,7 @@
=== "Python"
```python title="list.py"
""" 排序列表 """
# 排序列表
list.sort() # 排序后,列表元素从小到大排列
```