• zip函数-Python 3


    zip函数接受任意多个(包括0个和1个)序列作为参数,返回一个tuple列表。

    zip函数在获取数据后,生成字典(dict)时比较好用。

    for examples:

     1 # Code based on Python 3.x
     2 # _*_ coding: utf-8 _*_
     3 # __Author: "LEMON"
     4 
     5 pList = [('li', 'LY', 80), ('zeng', 'ZW', 90), ('dudu', 'LR', 98)]
     6 names = []
     7 scores = []
     8 for i in range(len(pList)):
     9     aStr = pList[i][0]
    10     bStr = pList[i][2]
    11     names.append(aStr)
    12     scores.append(bStr)
    13 
    14 
    15 aDict = dict(zip(names, scores))
    16 print(aDict)

    运行结果:

    1 {'dudu': 98, 'zeng': 90, 'li': 80}

    当然,上述案例有更简单的实现方法:

     1 # Code based on Python 3.x
     2 # _*_ coding: utf-8 _*_
     3 # __Author: "LEMON"
     4 
     5 pList = [('li', 'LY', 80), ('zeng', 'ZW', 90), ('dudu', 'LR', 98)]
     6 aDict = {}
     7 for data in pList:
     8     aDict[data[0]] = data[2]
     9     # dict[Key]=value
    10 print(aDict)
    作者:Lemon
    出处:个人微信公众号:“Python数据之道”(ID:PyDataRoad)和博客园:http://www.cnblogs.com/lemonbit/
    本文版权归作者所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文出处,否则保留追究法律责任的权利。
  • 相关阅读:
    ajax _02【XML响应,post请求】
    ajax_01【httpRequest.responseText】
    方法的定义【js函数】
    Promise基本用法
    promise
    筛选(1)
    ng-cli 中HTTP请求思路(1) (接口请求处理)
    PHP占用CPU过高几种思路
    关于tcpdump的那点事~
    虚拟机固定IP那点事
  • 原文地址:https://www.cnblogs.com/lemonbit/p/6238477.html
Copyright © 2020-2023  润新知