python2.7與python3.0 stringio 匯入問題:
try:
from stringio import stringio
except importerror:
from io import stringio
attributeerror: type object '_io.stringio' has no attribute 'stringio':
在python3.0以上使用: buf = stringio()
python 中去除字串頭尾空格及換行
str.strip()
用selenium在jenkins中跑自動化測試時出現以下錯誤:
selenium.common.exceptions.webdriverexception: message: unknown error: cannot find chrome binary
需要在python中加入以下**:
opt = selenium.webdriver.chromeoptions()
opt.binary_location = r'***xx\***\chrome.exe' //*** 為chrome 的路徑
driver = webdriver.chrome(chrome_options=opt)
用python 在解析獲取文字資料的時候遇到編碼問題:
`unicodeencodeerror: 'gbk' codec can't encode character ***
新增如下**:
'gbk'
)
或是在獲取資料時候使用
re.content.decode('utf-8');
nginx問題相關記錄
nginx目前主要用來做反向 和負載均衡,其實它也可以是乙個web伺服器 location api upstream web2 1 root的處理結果是 root路徑 location路徑 alias的處理結果是 使用alias路徑替換location路徑 例如 location a root da...
MySQL相關問題記錄
1 mysql三正規化 第一正規化 每個列都不可以再分,也就是說每一列儲存的內容都不可以再拆分,如位址就應該按照省 市 區等分別建立字段,而不應該放在乙個欄位中。第二正規化 在第一正規化的基礎上,非主鍵要完全依賴於主鍵,而不能部份依賴,換句話說就是一張表只能說明乙個事物。第三正規化,在第二正規化的基...
ubuntu ssh 相關問題記錄
1 在做linux開發過程中經常會用到遠端連線和遠端檔案拷貝 windows端常用的工具有xshell和xftp xshell可以遠端連線到linux的 伺服器 主機或者虛擬機器,而且可以像操作linux主機的終端一樣進行命令列操作。xftp 可以和遠端linux伺服器 主機 虛擬機器等進行檔案拷貝...