1. <tfoot id='HRKgt'></tfoot><legend id='HRKgt'><style id='HRKgt'><dir id='HRKgt'><q id='HRKgt'></q></dir></style></legend>

    2. <small id='HRKgt'></small><noframes id='HRKgt'>

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

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

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

        时间:2023-06-06
      1. <small id='FrJi7'></small><noframes id='FrJi7'>

          <tbody id='FrJi7'></tbody>
        • <bdo id='FrJi7'></bdo><ul id='FrJi7'></ul>

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

                  <tfoot id='FrJi7'></tfoot>
                • 本文介绍了在 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 中将变量的每一项打印在单独的行上的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文章

                • <tfoot id='g859j'></tfoot>

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

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

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