Python: DataStructure
开发基础¶
size 大小¶
空值判断¶
strings, lists, tuples
中断捕获¶
for¶
间隔值¶
调参需要测试间隔值
遍历修改值¶
- 使用
enumerate
函数结合for
循环遍历 list,以修改 list 中的元素。 enumerate
函数返回一个包含元组的迭代器,其中每个元组包含当前遍历元素的索引和值。在 for 循环中,我们通过索引i
修改了列表中的元素。
# 对于 二维list appDataDict
baseline = appDataDict[0][0] # CPU Total
for i, line in enumerate(appDataDict):
for j, entry in enumerate(line):
appDataDict[i][j] = round(entry/baseline, 7)
itertools¶
itertools --- 为高效循环而创建迭代器的函数
小数位¶
x = round(x,3)
# 保留小数点后三位
String 字符串¶
%c 格式化字符及其ASCII码
%s 格式化字符串
%d 格式化整数
%u 格式化无符号整型
%o 格式化无符号八进制数
%x 格式化无符号十六进制数
%X 格式化无符号十六进制数(大写)
%f 格式化浮点数字,可指定小数点后的精度
%e 用科学计数法格式化浮点数
%E 作用同%e,用科学计数法格式化浮点数
%g %f和%e的简写
%G %F 和 %E 的简写
%p 用十六进制数格式化变量的地址
string <-> list¶
' '.join(pass_list)
and pass_list.split(" ")
对齐"\n".join(["%-10s" % item for item in List_A])
开头判断¶
text = "Hello, world!"
if text.startswith("Hello"):
print("The string starts with 'Hello'")
else:
print("The string does not start with 'Hello'")
格式化¶
Python2.6 开始,通过 {}
和 :
来代替以前的 %
>>>"{} {}".format("hello", "world") # 不设置指定位置,按默认顺序
'hello world'
>>> "{1} {0} {1}".format("hello", "world") # 设置指定位置
'world hello world'
# 字符串补齐100位,<表示左对齐
variable = "Hello"
padded_variable = "{:<100}".format(variable)
数字处理
NumPy¶
容器:List¶
https://www.runoob.com/python/python-lists.html
切片
格式:[start_index:end_index:step]
不包括end_index
的元素
二维数组
排序
# take second element for sort
def takeSecond(elem):
return elem[2]
LCData.sort(key=takeSecond)
# [1740, '黄业琦', 392, '第 196 场周赛'],
# [1565, '林坤贤', 458, '第 229 场周赛'],
# [1740, '黄业琦', 458, '第 229 场周赛'],
# [1509, '林坤贤', 460, '第 230 场周赛'],
# [1740, '黄业琦', 460, '第 230 场周赛'],
# [1779, '黄业琦', 558, '第 279 场周赛'],
对应元素相加到一个变量
两个list对应元素相加
对于等长的
list1 = [1, 2, 3, 4, 5]
list2 = [6, 7, 8, 9, 10]
result = [x + y for x, y in zip(list1, list2)]
print(result)
如果两个列表的长度不同,你可以使用zip_longest()函数来处理它们。zip_longest()函数可以处理不等长的列表,并使用指定的填充值填充缺失的元素。
from itertools import zip_longest
list1 = [1, 2, 3, 4, 5]
list2 = [6, 7, 8]
result = [x + y for x, y in zip_longest(list1, list2, fillvalue=0)]
print(result)
如果是二维list
list1 = [[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]
list2 = [[10, 11, 12],
[13, 14, 15]]
rows = max(len(list1), len(list2))
cols = max(len(row) for row in list1 + list2)
result = [[0] * cols for _ in range(rows)]
for i in range(rows):
for j in range(cols):
if i < len(list1) and j < len(list1[i]):
result[i][j] += list1[i][j]
if i < len(list2) and j < len(list2[i]):
result[i][j] += list2[i][j]
print(result)
# 将一个二维列表的所有元素除以一个数A
result = [[element / A for element in row] for row in list1]
容器:元组Tuple¶
- 元组和列表类似,但是不同的是元组不能修改,但可以对元组进行连接组合,元组使用小括号。
- 元组中只包含一个元素时,需要在元素后面添加逗号,否则括号会被当作运算符使用。
容器:Dict¶
初始化¶
empty dict
a_dict = {'color': 'blue'}
for key in a_dict:
print(key)
# color
for key in a_dict:
print(key, '->', a_dict[key])
# color -> blue
for item in a_dict.items():
print(item)
# ('color', 'blue')
for key, value in a_dict.items():
print(key, '->', value)
# color -> blue
key 支持tuple元组
类似c++ 的 pair<int,int>
但是这样就不支持json.dump, json.dump()
无法序列化 Python 中元组(tuple)作为字典的 key,这会导致 json.dump()
函数在写入此类字典数据时会进入死循环或陷入卡住状态
删¶
改¶
tinydict = {'Name': 'Zara', 'Age': 7, 'Class': 'First'}
tinydict['Age'] = 8 # 更新
tinydict['School'] = "RUNOOB" # 添加
合并
查¶
判断key 是否存在
以下是两种常用的方法:
方法一:使用in操作符: in操作符返回一个布尔值,True表示存在,False表示不存在。
Copy code
my_dict = {"key1": "value1", "key2": "value2", "key3": "value3"}
# 判断是否存在指定的键
if "key2" in my_dict:
print("Key 'key2' exists in the dictionary.")
else:
print("Key 'key2' does not exist in the dictionary.")
方法二:使用dict.get()方法: dict.get()方法在键存在时返回对应的值,不存在时返回None。根据需要选择适合的方法进行判断。
Copy code
my_dict = {"key1": "value1", "key2": "value2", "key3": "value3"}
# 判断是否存在指定的键
if my_dict.get("key2") is not None:
print("Key 'key2' exists in the dictionary.")
else:
print("Key 'key2' does not exist in the dictionary.")
这两种方法都可以用来判断字典中是否存在指定的键。
容器:set¶
无序不重复序列
初始化¶
a= set() # 空set
thisset = set(("Google", "Runoob", "Taobao"))
>>> basket = {'apple', 'orange', 'apple', 'pear', 'orange', 'banana'}
>>> print(basket) # 这里演示的是去重功能
增¶
删¶
改¶
合并
类型转换¶
list2set¶
set2list¶
参考文献¶
https://blog.csdn.net/weixin_63719049/article/details/125680242