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

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

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.

  >>> 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\n'*8)  #\n 换行符
  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

最新文章

  1. C#在Dictionary中使用枚举作为键
  2. Linux下,使用Git管理 dotfiles(配置文件)
  3. B1/B2签证拒签
  4. jquery获取datagrid多选值
  5. MOS X 下Apache服务器配置,及日志读取
  6. LINUX CP 跳过询问是否覆盖
  7. JAVA 接口与抽象类的区别
  8. Linux内存寻址
  9. JavaWebSession
  10. 深入了解view以及自定义控件
  11. CentOS7 安装 scala 2.11.1
  12. Redis3.0 Install
  13. HTML5와 CSS3 적용기
  14. DOS批处理命令-pause
  15. Integer to English Words 解答
  16. [内存管理]连续内存分配器(CMA)概述
  17. 如何在Gulp中提高Browserify的打包速度
  18. CentOS7 nginx安装
  19. Java /C# 实现文件压缩
  20. 【Python深入】Python中继承object和不继承object的区别

热门文章

  1. FMS 4中multicast脚本的小修正
  2. Apache Nutch build文件解析
  3. hiho一下20周 线段树的区间修改
  4. code complete part1
  5. 学习笔记-Java编程思想
  6. Ajax在html页面获取后台XML文件资源
  7. online_jf.lua --累计在线时间领取物品(积分)的lua脚本
  8. 【转】android 属性动画之 ObjectAnimator
  9. SQL Server 连接字符串备忘
  10. MVC 下 JsonResult 的使用方法(JsonRequestBehavior.AllowGet)【转】