我有一個string
這樣Python字符串列出轉換
sample="[2, 6, 10, 14, 18, 22, 26, 30, 34, 38, 42, 46, 50]"
如何轉換,爲list
?我期待的輸出爲列表,這樣
output=[2, 6, 10, 14, 18, 22, 26, 30, 34, 38, 42, 46, 50]
我知道split()
功能,但在這種情況下,如果我使用
sample.split(',')
它會在[
和]
符號。有沒有簡單的方法來做到這一點?
編輯對不起,重複post..I沒有看到這個帖子到現在爲止 Converting a string that represents a list, into an actual list object
'輸出= json.loads(樣品)'? – geoffspear