1. 首页
  2. 数据库
  3. 其它
  4. python高阶用法

python高阶用法

上传者: 2020-12-23 05:33:54上传 PDF文件 60KB 热度 18次
前言 本文带你学习python的高阶模块。以下内容将帮助加深python的理解 干货 1. 生成式、推导式的用法 Comprehensions,能用一行代码解决的绝不用第二行 gen_list = ['tencent', 'ali', 'baidu', 'huawei', 'bytes', 'meituan', 'didi'] print(list(range(11))) # if...else 推导式, print([a for a in gen_list if len(a) > 4]) gen_dict = { "tencent": 100, "alibaba": 100
用户评论