摘要: 在.vimrc中添加以下代码后,重启vim即可实现按TAB产生4个空格:set ts=4 (注:ts是tabstop的缩写,设TAB宽4个空格)set expandtab 对于已保存的文件,可以使用下面的方法进行空格和TAB的替换:TAB替换为空格::set ts=4:set expandtab:% 阅读全文
posted @ 2016-08-30 16:15 穆穆兔兔 阅读(2189) 评论(0) 推荐(0) 编辑
摘要: bool t, f = True, False print type(t) # Prints "<type 'bool'>" 字符串 hello = 'hello' # 实在想不出的时候就用hello world world = "world" print hello, len(hello) # 字 阅读全文
posted @ 2016-08-30 15:16 穆穆兔兔 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 244 pyenv global 3.5.1 245 which python 246 python 247 pip install virtualenv 248 ls 249 pwd 250 ls 251 cd work/ 252 ls 253 mkdir ttttt 254 cd ttttt/ 阅读全文
posted @ 2016-08-30 14:30 穆穆兔兔 阅读(172) 评论(0) 推荐(0) 编辑