<legend id='GbqJl'><style id='GbqJl'><dir id='GbqJl'><q id='GbqJl'></q></dir></style></legend>

<small id='GbqJl'></small><noframes id='GbqJl'>

    1. <tfoot id='GbqJl'></tfoot>
      <i id='GbqJl'><tr id='GbqJl'><dt id='GbqJl'><q id='GbqJl'><span id='GbqJl'><b id='GbqJl'><form id='GbqJl'><ins id='GbqJl'></ins><ul id='GbqJl'></ul><sub id='GbqJl'></sub></form><legend id='GbqJl'></legend><bdo id='GbqJl'><pre id='GbqJl'><center id='GbqJl'></center></pre></bdo></b><th id='GbqJl'></th></span></q></dt></tr></i><div id='GbqJl'><tfoot id='GbqJl'></tfoot><dl id='GbqJl'><fieldset id='GbqJl'></fieldset></dl></div>
        <bdo id='GbqJl'></bdo><ul id='GbqJl'></ul>
    2. 如何将此字符串转换为列表列表?

      How can I convert this string to list of lists?(如何将此字符串转换为列表列表?)
    3. <i id='GgWQa'><tr id='GgWQa'><dt id='GgWQa'><q id='GgWQa'><span id='GgWQa'><b id='GgWQa'><form id='GgWQa'><ins id='GgWQa'></ins><ul id='GgWQa'></ul><sub id='GgWQa'></sub></form><legend id='GgWQa'></legend><bdo id='GgWQa'><pre id='GgWQa'><center id='GgWQa'></center></pre></bdo></b><th id='GgWQa'></th></span></q></dt></tr></i><div id='GgWQa'><tfoot id='GgWQa'></tfoot><dl id='GgWQa'><fieldset id='GgWQa'></fieldset></dl></div>

        <legend id='GgWQa'><style id='GgWQa'><dir id='GgWQa'><q id='GgWQa'></q></dir></style></legend>

        <small id='GgWQa'></small><noframes id='GgWQa'>

          <bdo id='GgWQa'></bdo><ul id='GgWQa'></ul>
          <tfoot id='GgWQa'></tfoot>
                <tbody id='GgWQa'></tbody>
                本文介绍了如何将此字符串转换为列表列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                如果用户输入 [[0,0,0], [0,0,1], [1,1,0]] 并回车,程序应该将此字符串转换为多个列表;一个列表保存 [0][0][0],另一个保存 [0][0][1],最后一个列表保存 [1][1][0]

                If a user types in [[0,0,0], [0,0,1], [1,1,0]] and press enter, the program should convert this string to several lists; one list holding [0][0][0], other for [0][0][1], and the last list for [1][1][0]

                python有没有好的方法来处理这个问题?

                Does python have a good way to handle this?

                推荐答案

                这比 Satoru 的灵活一点,并且不使用任何库.不过,它不适用于更深的嵌套列表.为此,我认为您需要一个递归函数(或循环)或 eval.

                This is a little more flexible than Satoru's, and doesn't use any libraries. Still, it won't work with more deeply nested lists. For that, I think you would need a recursive function (or loop), or eval.

                str = "[[0,0,0],[0,0,1],[1,1,0]]"
                strs = str.replace('[','').split('],')
                lists = [map(int, s.replace(']','').split(',')) for s in strs]
                

                lists 现在包含您想要的列表列表.

                lists now contains the list of lists you want.

                这篇关于如何将此字符串转换为列表列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Initialize Multiple Numpy Arrays (Multiple Assignment) - Like MATLAB deal()(初始化多个 Numpy 数组(多重赋值) - 像 MATLAB deal())
                How to extend Python class init(如何扩展 Python 类初始化)
                What#39;s the difference between dict() and {}?(dict() 和 {} 有什么区别?)
                What is a wrapper_descriptor, and why is Foo.__init__() one in this case?(什么是 wrapper_descriptor,为什么 Foo.__init__() 在这种情况下是其中之一?)
                Initialize list with same bool value(使用相同的布尔值初始化列表)
                setattr with kwargs, pythonic or not?(setattr 与 kwargs,pythonic 与否?)
                  <i id='W1n98'><tr id='W1n98'><dt id='W1n98'><q id='W1n98'><span id='W1n98'><b id='W1n98'><form id='W1n98'><ins id='W1n98'></ins><ul id='W1n98'></ul><sub id='W1n98'></sub></form><legend id='W1n98'></legend><bdo id='W1n98'><pre id='W1n98'><center id='W1n98'></center></pre></bdo></b><th id='W1n98'></th></span></q></dt></tr></i><div id='W1n98'><tfoot id='W1n98'></tfoot><dl id='W1n98'><fieldset id='W1n98'></fieldset></dl></div>

                        <tbody id='W1n98'></tbody>
                      • <legend id='W1n98'><style id='W1n98'><dir id='W1n98'><q id='W1n98'></q></dir></style></legend>
                      • <small id='W1n98'></small><noframes id='W1n98'>

                        <tfoot id='W1n98'></tfoot>

                        • <bdo id='W1n98'></bdo><ul id='W1n98'></ul>