zip函数的使用

Posted songxiaohua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了zip函数的使用相关的知识,希望对你有一定的参考价值。

s = [[1, 10], [1.2, 11], [2, 5], [5, 15]]
data = zip(*s)
x_list = data[0]
y_list = data[1]
x_min = min(x_list)
x_max = max(x_list)
y_min = min(y_list)
y_max = max(y_list)
box = [x_min, x_max, y_min, y_max]
print(box)  # [1, 5, 5, 15]

 

以上是关于zip函数的使用的主要内容,如果未能解决你的问题,请参考以下文章

使用从循环内的代码片段中提取的函数避免代码冗余/计算开销

从 Zip 文件中的文件中读取内容

VSCode自定义代码片段——声明函数

VSCode自定义代码片段8——声明函数

我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情

python-zip()函数lambdamap的单独与结合使用