如何选择列表python 3中更改的数字

时间:2018-04-26 14:29:50

标签: python-3.x

我有一个包含产品订单的清单,我需要从订单order_id:TheNumberIwant中选择一个数字。我尝试了一些东西,但没有人能做到这一点。我无法访问该号码,因为可以更改列表中的位置,但始终位于order_id:之后。我尝试过使用split方法,但只选择order_id中的一个,然后我需要选择所有。

这就是我正在做的事情:

我有这个字符串

  

{"数据":[{" ORDER_ID":744152," pedido_venda":" Z921211"" supplier_id&# 34;:11042,......

    with  open("items.txt","r") as file:
        data = file.readlines()            
for line in data:
    word = line.split("order_id:" )
    abre_arquivo1 = open("items2.txt","w")
    abre_arquivo1.write("%s\n" % word)
    abre_arquivo1.close()

这会删除order_id,但我希望字符串中的数字保存在" items2.txt"。

0 个答案:

没有答案