簡體   English   中英

將數組的字符串表示形式轉換為 Python 中的實際數組

[英]Convert String Representation Of Array To Actual Array In Python

我對 python 很陌生,並且正在努力完成這項工作。

我需要轉換

["ladksa dlskdlsd slkd sldks lskds lskds","skkdsdl skdsl lskds lsdk sldk sdslkds"] - String Representation of Array To Actual Array Like this.

[0]-> "ladksa dlskdlsd slkd sldks lskds lskds"
[1]-> "skkdsdl skdsl lskds lsdk sldk sdslkds"

我嘗試過以下事情:

json.load(array) -> but it gave me parse array error
literal_eval(x)  -> read it somewhere (dont know why it doesn't work)

錯誤:

custom_classes = json.loads(element.custom_classes)
 File "C:\Users\Shri\AppData\Local\Programs\Python\Python38-32\lib\json\__init_
.py", line 357, in loads
   return _default_decoder.decode(s)
 File "C:\Users\Shri\AppData\Local\Programs\Python\Python38-32\lib\json\decoder
py", line 337, in decode
   obj, end = self.raw_decode(s, idx=_w(s, 0).end())
 File "C:\Users\Shri\AppData\Local\Programs\Python\Python38-32\lib\json\decoder
py", line 355, in raw_decode
   raise JSONDecodeError("Expecting value", s, err.value) from None
json.decoder.JSONDecodeError: Expecting value: line 1 column 2 (char 1)

另外,我使用下面的 js 代碼來發送數據:

'custom_classes':'\''+JSON.stringify(finalized_classes)+'\'',

數據存儲為:請在此處查看圖片

arr_element = array of Objects For Specific Class

有一個屬性

custom_classes -> which is stored as above image.

我正在做:

for element in arr_element:
    string_obj = json.loads(str(element.custom_classes))
    //here it is error

請幫忙

import json

s = '["ladksa dlskdlsd slkd sldks lskds lskds","skkdsdl skdsl lskds lsdk sldk sdslkds"]'

json.loads(s)

# gives ['ladksa dlskdlsd slkd sldks lskds lskds', 'skkdsdl skdsl lskds lsdk sldk sdslkds']

After you use json.loads() , you can use str.split() to turn the strings into arrays, and then append one of the arrays onto the other if you need to.

foo = ['this is a sentence', 'this is a different sentence']

bar = foo[0].split(' ')
biz = foo[1].split(' ')

bar.append(biz)

print(bar)

結果: ['this', 'is', 'a', 'sentence', 'this', 'is', 'a', 'different', 'sentence']

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM