<i id='R7S2Z'><tr id='R7S2Z'><dt id='R7S2Z'><q id='R7S2Z'><span id='R7S2Z'><b id='R7S2Z'><form id='R7S2Z'><ins id='R7S2Z'></ins><ul id='R7S2Z'></ul><sub id='R7S2Z'></sub></form><legend id='R7S2Z'></legend><bdo id='R7S2Z'><pre id='R7S2Z'><center id='R7S2Z'></center></pre></bdo></b><th id='R7S2Z'></th></span></q></dt></tr></i><div id='R7S2Z'><tfoot id='R7S2Z'></tfoot><dl id='R7S2Z'><fieldset id='R7S2Z'></fieldset></dl></div>

    <tfoot id='R7S2Z'></tfoot>
  • <legend id='R7S2Z'><style id='R7S2Z'><dir id='R7S2Z'><q id='R7S2Z'></q></dir></style></legend>
  • <small id='R7S2Z'></small><noframes id='R7S2Z'>

        <bdo id='R7S2Z'></bdo><ul id='R7S2Z'></ul>

        在 Python 中将变量的每一项打印在单独的行上

        时间:2023-10-08
        <legend id='BJdqQ'><style id='BJdqQ'><dir id='BJdqQ'><q id='BJdqQ'></q></dir></style></legend>

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

            <tbody id='BJdqQ'></tbody>

          <tfoot id='BJdqQ'></tfoot>

                <i id='BJdqQ'><tr id='BJdqQ'><dt id='BJdqQ'><q id='BJdqQ'><span id='BJdqQ'><b id='BJdqQ'><form id='BJdqQ'><ins id='BJdqQ'></ins><ul id='BJdqQ'></ul><sub id='BJdqQ'></sub></form><legend id='BJdqQ'></legend><bdo id='BJdqQ'><pre id='BJdqQ'><center id='BJdqQ'></center></pre></bdo></b><th id='BJdqQ'></th></span></q></dt></tr></i><div id='BJdqQ'><tfoot id='BJdqQ'></tfoot><dl id='BJdqQ'><fieldset id='BJdqQ'></fieldset></dl></div>
                  <bdo id='BJdqQ'></bdo><ul id='BJdqQ'></ul>
                • 本文介绍了在 Python 中将变量的每一项打印在单独的行上的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在尝试在 Python 中打印一个包含数字的列表,并且当它打印列表中的项目时,所有项目都打印在同一行.

                  I am trying to print a list in Python that contains digits and when it prints the items in the list all print on the same line.

                  print ("{} ".format(ports))
                  

                  这是我的输出

                  [60, 89, 200]
                  

                  我怎样才能看到这种形式的结果:

                  how can I see the result in this form:

                  60
                  89
                  200
                  

                  我试过 print (" ".join(ports)) 但这不起作用.

                  I have tried print (" ".join(ports)) but that does not work.

                  推荐答案

                  遍历列表并在新行打印每个项目:

                  Loop over the list and print each item on a new line:

                  for port in ports:
                      print(port)
                  

                  或在加入之前将整数转换为字符串:

                  or convert your integers to strings before joining:

                  print('
                  '.join(map(str, ports)))
                  

                  或告诉 print() 使用换行符作为分隔符,并使用 * splat 语法将列表作为单独的参数传递:

                  or tell print() to use newlines as separators and pass in the list as separate arguments with the * splat syntax:

                  print(*ports, sep='
                  ')
                  

                  演示:

                  >>> ports = [60, 89, 200]
                  >>> for port in ports:
                  ...     print(port)
                  ... 
                  60
                  89
                  200
                  >>> print('
                  '.join(map(str, ports)))
                  60
                  89
                  200
                  >>> print(*ports, sep='
                  ')
                  60
                  89
                  200
                  

                  这篇关于在 Python 中将变量的每一项打印在单独的行上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:在 Python 中打开一个波形文件:未知格式:49. 出了什 下一篇:如何从模型中在 django 中设置 DateField 格式?

                  相关文章

                  最新文章

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

                    <tfoot id='PHtI0'></tfoot>
                    1. <i id='PHtI0'><tr id='PHtI0'><dt id='PHtI0'><q id='PHtI0'><span id='PHtI0'><b id='PHtI0'><form id='PHtI0'><ins id='PHtI0'></ins><ul id='PHtI0'></ul><sub id='PHtI0'></sub></form><legend id='PHtI0'></legend><bdo id='PHtI0'><pre id='PHtI0'><center id='PHtI0'></center></pre></bdo></b><th id='PHtI0'></th></span></q></dt></tr></i><div id='PHtI0'><tfoot id='PHtI0'></tfoot><dl id='PHtI0'><fieldset id='PHtI0'></fieldset></dl></div>

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

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