• 技术文章 >常见问题 >Python常见问题

    python怎么不转行输出

    silencementsilencement2020-02-06 17:48:06原创2632

    在使用print()函数时,并不希望输出结束后自动换行,因此,我们可以按照下面的方法来做

    1.print()指定结束符

    print('hello',end='')
    print('world')
    #result:helloworld

    当print()函数,指定end参数为空字符后,print()函数就不再主动添加换行符了。并且,hello和world之间也不存在任何空格。

    a = 'first line'
    b = 'second line'
    c = 'third line'
    print(a,end='\n\n')
    print(b)
    print(c,end='!')

    更多学习内容,请点击Python学习网!

    专题推荐:换行
    上一篇:python打开文本文件乱码怎么办 下一篇:python怎么打包整个项目

    相关文章推荐

    • c语言如何运行python脚本• python怎样创建文件目录• mac如何配置python环境变量

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网