51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 1546|回复: 1
打印 上一主题 下一主题

python3.x ---print

[复制链接]
  • TA的每日心情
    无聊
    6 小时前
  • 签到天数: 528 天

    连续签到: 1 天

    [LV.9]测试副司令

    跳转到指定楼层
    1#
    发表于 2019-1-10 16:29:17 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

    socket$ python3.4
    Python 3.4.3 (default, Oct 14 2015, 20:28:29)
    [GCC 4.8.4] on linux
    Type "help", "copyright", "credits" or "license" for more information.
    >>> print()

    >>> s='1a'
    >>> l=[12]
    >>> print(s, l)
    1a [12]
    >>> print(s, l, sep='')
    1a[12]
    >>> print(s, l, sep=',')
    1a,[12]
    >>> print(s, l, sep=',',end='')
    1a,[12]>>>
    >>> print(s, l, sep=',',end='\n')
    1a,[12]
    >>>


    Help on built-in function print in module builtins:



    >>> print(s, l, sep=',', file=open('t.txt', 'w'))
    >>> with open(t.txt) as f:

    >>> f = open('t.txt')
    >>> f
    <_io.TextIOWrapper name='t.txt' mode='r' encoding='UTF-8'>
    >>> f.readlines()
    ['1a,[12]\n']
    >>>


    print(...)
        print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=False)
       
        Prints the values to a stream, or to sys.stdout by default.
        Optional keyword arguments:
        file:  a file-like object (stream); defaults to the current sys.stdout.
        sep:   string inserted between values, default a space.
        end:   string appended after the last value, default a newline.
        flush: whether to forcibly flush the stream.
    (END)


    分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
    收藏收藏
    回复

    使用道具 举报

    本版积分规则

    关闭

    站长推荐上一条 /1 下一条

    小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

    GMT+8, 2024-11-18 16:30 , Processed in 0.061613 second(s), 23 queries .

    Powered by Discuz! X3.2

    © 2001-2024 Comsenz Inc.

    快速回复 返回顶部 返回列表