zoukankan      html  css  js  c++  java
  • 利用字典获取到数据里面相对应的值

    {'orders': {'result': [{'createtime': 1533044383000, 'filledamount': '0', 'filledquantity': '0', 'orderid': '201807312139426110018131', 'orderquantity': '4', 'orderstatus': 'unfilled', 'price': '0.0005', 'symbol': 'ZIBERUSDT', 'type': 'buy-limit'}, {'createtime': 1533044373000, 'filledamount': '0', 'filledquantity': '0', 'orderid': '201807312139327250013932', 'orderquantity': '6', 'orderstatus': 'unfilled', 'price': '0.001', 'symbol': 'ZIBERUSDT', 'type': 'sell-limit'}], 'totalcount': 2, 'pagesize': 200, 'page': 1}, 'status': 'ok', 'timestamp': 1533044391442}

    上面这些都是数据,也是请求出来,现在要获取这里面的orderid相对应的值.

        orders = post_open_orders(dic)
        for order in orders["orders"]["result"]:
            dic["orderid"] = order["orderid"]
            print(dic)
  • 相关阅读:
    Java关键字transient和volatile小结(转)
    1、环境
    SSH框架搭建
    2.4 easyui
    PHP操作大文件
    PHP小工具
    PHP正则替换函数收集
    PHP小知识收集
    Yii ACF(accessController)简单控权
    linux 文件存放目录
  • 原文地址:https://www.cnblogs.com/zengsf/p/9398456.html
Copyright © 2011-2022 走看看