您好,我正在尝试获取嵌套在其中的其他列表。这是我的字符串:
'"Title" "Title of an article, chapter, etc." ("The Divine Comedy" "Rules of Construction") true null null false'
这是我试图达到的结果:
['Title', 'Title of an article, chapter, etc.', ['The Divine Comedy', 'Rules of Construction'], true, null, null, false]
我目前正在使用`shlex,但没有成功:
def metadata():
md = shlex.split(content)
print md