美文网首页
python中的换行符

python中的换行符

作者: EmptyBottl_520d | 来源:发表于2017-09-06 11:16 被阅读0次

    --------------python2 IDE中------------------

    >>> print 'helo\nme'

    helo

    me

    >>> print 'hello\rme'

    hello me

    >>> print 'hello\r\nme'

    hello

    me

    >>>

    ------------------python2命令行中------------------

    >>> print 'hello\nme'

    hello

    me

    >>> print 'hello\rme'

    mello

    >>> print 'hello\r\nme'

    hello

    me

    >>>

    -----------------------bash中--------------------

    root@bottle-king:~# echo 'hello\nme'

    hello\nme

    root@bottle-king:~# echo -e 'hello\nme'

    hello

    me

    root@bottle-king:~# echo -e 'hello\rme'

    mello

    相关文章

      网友评论

          本文标题:python中的换行符

          本文链接:https://www.haomeiwen.com/subject/smvmjxtx.html