<tfoot id='tSCeC'></tfoot>
  • <legend id='tSCeC'><style id='tSCeC'><dir id='tSCeC'><q id='tSCeC'></q></dir></style></legend>

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

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

        打印用逗号分隔的列表,不带尾随逗号

        Printing a list separated with commas, without a trailing comma(打印用逗号分隔的列表,不带尾随逗号)
          <tbody id='DKlZW'></tbody>

          • <legend id='DKlZW'><style id='DKlZW'><dir id='DKlZW'><q id='DKlZW'></q></dir></style></legend>
            1. <small id='DKlZW'></small><noframes id='DKlZW'>

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

                <tfoot id='DKlZW'></tfoot>

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

                  本文介绍了打印用逗号分隔的列表,不带尾随逗号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在编写一段代码,它应该输出用逗号分隔的项目列表。该列表由for循环生成:

                  for x in range(5):
                      print(x, end=",")
                  

                  问题是我不知道如何删除与列表中最后一个条目一起添加的最后一个逗号。它输出以下内容:

                  0,1,2,3,4,
                  

                  如何删除结尾,

                  推荐答案

                  sep=","作为参数传递给print()

                  使用PRINT语句就快成功了。

                  不需要循环,print既有sep参数,也有end参数。

                  >>> print(*range(5), sep=", ")
                  0, 1, 2, 3, 4
                  

                  一点说明

                  print内置函数接受任意数量的项作为要打印的参数。将打印任何非关键字参数,并以sep分隔。sep的默认值是单个空格。

                  >>> print("hello", "world")
                  hello world
                  

                  更改sep具有预期结果。

                  >>> print("hello", "world", sep=" cruel ")
                  hello cruel world
                  

                  每个参数都使用str()字符串化。将迭代数传递给print语句将把迭代数字符串化为一个参数。

                  >>> print(["hello", "world"], sep=" cruel ")
                  ['hello', 'world']
                  

                  但是,如果您将星号放在可迭代之前,这会将其分解为单独的参数,并允许使用sep

                  >>> print(*["hello", "world"], sep=" cruel ")
                  hello cruel world
                  
                  >>> print(*range(5), sep="---")
                  0---1---2---3---4
                  

                  使用join作为备选

                  使用给定分隔符将可迭代项联接到字符串的替代方法是使用分隔符字符串的join方法。

                  >>>print(" cruel ".join(["hello", "world"]))
                  hello cruel world
                  

                  这稍微有点笨拙,因为它需要将非字符串元素显式转换为字符串。

                  >>>print(",".join([str(i) for i in range(5)]))
                  0,1,2,3,4
                  

                  蛮力-非骨盆关节

                  您建议的方法是使用循环来连接字符串,并在此过程中添加逗号。当然,这会产生正确的结果,但它的工作要困难得多。

                  >>>iterable = range(5)
                  >>>result = ""
                  >>>for item, i in enumerate(iterable):
                  >>>    result = result + str(item)
                  >>>    if i > len(iterable) - 1:
                  >>>        result = result + ","
                  >>>print(result)
                  0,1,2,3,4
                  

                  这篇关于打印用逗号分隔的列表,不带尾随逗号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

                  相关文档推荐

                  Split a Pandas column of lists into multiple columns(将 Pandas 的列表列拆分为多列)
                  How does the @property decorator work in Python?(@property 装饰器在 Python 中是如何工作的?)
                  What is the difference between old style and new style classes in Python?(Python中的旧样式类和新样式类有什么区别?)
                  How to break out of multiple loops?(如何打破多个循环?)
                  How to put the legend out of the plot(如何将传说从情节中剔除)
                  Why is the output of my function printing out quot;Nonequot;?(为什么我的函数输出打印出“无?)
                    <tbody id='jPAU1'></tbody>

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

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