• Python-2 print


    #1 print函数(python版本3.3.5):

    >>> help(print)
    Help on built-in function print in module builtins:

    print(...)
        print(value, ..., sep=' ', end=' ', 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.

      >>> print('hello world')
      hello world

    #2 字符串:

      >>> print('i love i')
      i love i

      >>> print('i love '+'i')  #连接两个字符串
      i love i

      >>> print('i love '*8)  #重复打印字符串
      i love i love i love i love i love i love i love i love

      >>> print('i love '*8)  # 换行符
      i love
      i love
      i love
      i love
      i love
      i love
      i love
      i love

    #3 数值(整型)

      >>> print(5+3)
      8

      >>> 5+3
      8

      >>> 98765432123456789*98765432123456789
      9754610582533150213077274750190521

  • 相关阅读:
    提取文件唯一标识符
    U盘出现很多.exe的文件处理方案
    winform做的excel与数据库的导入导出
    php获取数据库结构
    根据手机屏幕的旋转,调整图片
    c#中base64编码解码
    遮罩层的实现
    opencv车流量统计算法
    winform创建快捷方式
    mysql存储过程中like用法
  • 原文地址:https://www.cnblogs.com/liuhuan2368935760/p/4653964.html
Copyright © 2020-2023  润新知