文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Python推导式数据处理方式是什么

2023-07-02 17:43

关注

今天小编给大家分享一下Python推导式数据处理方式是什么的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。

前言

推导式是一种独特的数据处理方式,可以快速的从一个数据序列构建另一个新的数据序列的结构体。常用的推导式有一下四种:

1、列表推导式

# coding:utf-8# Author:Yang Xiaopeng"""语法格式[表达式 for 变量 in 变量][表达式 for 变量 in 变量 if 条件表达式]上述格式中 的 表达式中的变量与for变量一致"""old_list = [1, 2, 3, 4, 5]new_list = [new_list * new_list for new_list in old_list] # yes [1, 4, 9, 16, 25]# new_list = [new_list1 * new_list for new_list in old_list] # NameError: name 'new_list1' is not defined# new_list = [new_list * new_list for new_list2 in old_list] # NameError: name 'new_list' is not definedold_list = [old_list * old_list for old_list in old_list] # yes [1, 4, 9, 16, 25]print(old_list)print(new_list)new_list = [old_list for old_list in old_list if old_list%2 == 1] # yes [1, 9, 25]print(new_list)

Python推导式数据处理方式是什么

2、元组推导式

# coding:utf-8# Author:Yang Xiaopeng"""语法格式(表达式 for 变量 in 变量)(表达式 for 变量 in 变量 if 条件表达式)上述格式中 的 表达式中的变量与for变量一致"""old_list = (1, 2, 3, 4, 5)new_list = (new_list * new_list for new_list in old_list) # yes 1_4_9_16_25_# new_list = [new_list1 * new_list for new_list in old_list] # NameError: name 'new_list1' is not defined# new_list = [new_list * new_list for new_list2 in old_list] # NameError: name 'new_list' is not definedold_list = (old_list * old_list for old_list in old_list) # yes 1_4_9_16_25_for item in new_list:print(item, end="_")print("")for item in old_list:print(item, end="_")print("")

Python推导式数据处理方式是什么

3、集合推导式

# coding:utf-8# Time:2022/6/28 20:57# Author:Yang Xiaopeng"""语法格式{表达式 for 变量 in 变量}{表达式 for 变量 in 变量 if 条件表达式}上述格式中 的 表达式中的变量与for变量一致"""old_list = {1, 2, 3, 4, 5}new_list = {new_list * new_list for new_list in old_list} # yes {1, 4, 9, 16, 25}# new_list = {new_list1 * new_list for new_list in old_list} # NameError: name 'new_list1' is not defined# new_list = {new_list * new_list for new_list2 in old_list} # NameError: name 'new_list' is not definedold_list = {old_list * old_list for old_list in old_list} # yes {1, 4, 9, 16, 25}print(old_list)print(new_list)new_list = {old_list for old_list in old_list if old_list % 2 == 1} # yes {1, 9, 25}print(new_list)

Python推导式数据处理方式是什么

4、字典推导式

# coding:utf-8# Author:Yang Xiaopeng"""语法格式{key : value for key in 变量}{key : value for key in 变量 if 表达式}"""old_dict = ["Zhang", "Wang", "Yang", "Jim"]new_dict = {key:len(key) for key in old_dict} # yes {1, 4, 9, 16, 25}print(old_dict)print(new_dict)new_dict = {lll:len(lll) for lll in old_dict if len(lll) % 2 == 0} # yes {1, 9, 25}print(new_dict)

Python推导式数据处理方式是什么

以上就是“Python推导式数据处理方式是什么”这篇文章的所有内容,感谢各位的阅读!相信大家阅读完这篇文章都有很大的收获,小编每天都会为大家更新不同的知识,如果还想学习更多的知识,请关注编程网行业资讯频道。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯