zoukankan      html  css  js  c++  java
  • python字典作为统计记录工具

    1.python 利用字典作为计数项,统计指定项的个数

    #!/usr/bin/python

    ta={}
    key = "test"
    if not key in ta:
        ta["test"]=0
    for i in range(1,5):
        ta["test"] += 1

    print ta

    2.dictionary(或是列list)在python中循环方式为直接利用该对象:
    next={"1":"a","2":"b","3":"c"}
    for a in next:
        print a #a 是循环体内部的每个子对象。dictionary里的是key;而list是数组包含的子对象整体。
        print next[a]

    注意,字典的操作对象基本都是用key,而list是每个子对象。

    if not  key in dictionary:#判断key是否在dictionary里;或者用dictionary.has_key("key")

    dictioinary.get("key")

  • 相关阅读:
    字母统计
    特殊乘法
    一年的第几天
    找中位数
    查找学生信息
    Hdu 1009 FatMouse' Trade
    Hdu 1012 u Calculate e
    Hdu 1005 Number Sequence
    Hdu 1008 Elevator
    Hdu 1003 Max Sum
  • 原文地址:https://www.cnblogs.com/cl1024cl/p/6205606.html
Copyright © 2011-2022 走看看