Tips of Python!

Tips of Python!(Python 2.7)

    (不定期更新中~)

 

1. raw_input() 和 input():

    raw_input() 将输入原封不动的保存为一个字符串

        输入 1 + 1 ,得到 '1 + 1'

    input() 会保留输入的类型,对表达式进行运算

        输入 1 + 1 ,得到 2

        但是!如果直接输入一串字符,系统会报错,如果想输入一个字符串必须加上单引号或双引号!

2. 程序开发:

    建议采用‘增量开发’(incremental development)模式

    即每次只增加和测试少量的代码,迭代进行,以避免大量、长时间的debug过程

    1 - 开始一个工作计划,每次只增加一小部分代码,这样如果出现了错误,你很容易就能够进行定位

    2 - 用临时变量存储中间值,这样就能输出并检查他们

    3 - 当程序可以正常工作后,你可以在不影响可读性的前提下删除或增加一些代码

3. 编程规范:

  • use 4 spaces for indentation
  • imports should go at the top of the file
  • separate function definitions with two blank lines
  • keep function definitions together
  • keep top level statements, including function calls, together at the bottom of the program

你可能感兴趣的:(python)