如何在同一行上打印2个项目

这个问题在这里已经有了答案:

  • 如何在没有换行符或空格的情况下打印? 26个答案

  • 用逗号分隔这些值:

    print 'Your new balance:', new
    

    看到下面的演示:

    >>> new = 123
    >>> print 'Your new balance:', new
    Your new balance: 123
    >>>
    >>> print 'a', 'b', 'c', 'd'
    a b c d
    >>>
    

    请注意,这样做会自动在值之间放置一个空格。

    链接地址: http://www.djcxy.com/p/77209.html

    上一篇: How to print 2 items on the same line

    下一篇: How to print variables without spaces between values