PyCharm自动添加文件头注释位置:File->settings->Editor->File and Code Templates-&...
Python库文件安装1. pip安装$ pip install request2. 手动安装由于有墙的原因,有时候pip不灵,解决:进入:http://...
Python 字符操作记录# coding=utf-8 string = ''' Hi,I`m Tom. Hello,I`m Jerry. ''' s1...
Python 文件及文件夹操作记录# coding=utf-8 import os, sys # 文件目录的斜杠,使平台无关 print os.sep...
Python 文件读写操作记录# coding=utf-8 import os # 此文件只为记录方法,不可直接执行 # read +++++++++...