在使用Python时,为了方便使用,常常需要有自动补全功能,所以建议安装IPython,该工具带自动补全功能。

在使用Python时,在交互模式下

>>>import this

可查看Python的19条特点。

使用Vim进行编辑时,可以通过在home目录下创建.vimrc来优化编辑时操作,内容如下:

syntax on   #根据Python语法着色

filetype plugin indent on  #符合Python格式进行自动缩进

setl expandtab

setl tabstop=4

setl shiftwidth=4

setl softtabstop=4  #tab键换成4个空格

autocmd BufWritePre * :%s/\s\+$//gw

#删除行末空格

setlocal textwidth=80 #每行80个字符自动换行