符号打印


[root@master ~]# python -c "print('*' * 10)" 

**********




系统默认python2.6.6,bpython默认为python2.6.6

安卓python3.4 是bpython默认为python3.4

python3 -m pip install bpython


来回切换

python -m bpython

python3 -m bpython


=========================================

cd ~ 
wget https://github.com/rkulla/pydiction/archive/master.zip
unzip master.zip
mkdir -pv ~/.vim/tools/pydiction
cp -r pydiction-master/after ~/.vim
cp pydiction-master/complete-dict ~/.vim/tools/pydiction


vim ~/.vimrc

filetype plugin on

let g:pydiction_location='~/.vim/tools/pydiction/complete-dict'



十字光标

cat .vimrc 

set expandtab

set tabstop=4

set shiftwidth=4

set cursorcolumn

set cursorline

highlight CursorLine   cterm=NONE ctermbg=white ctermfg=black guibg=NONE guifg=NONE

highlight CursorColumn cterm=NONE ctermbg=white ctermfg=black guibg=NONE guifg=NONE