1、python 三元運算子
無,用 if else
2、python 設定**縮排
全選。。然後按tab
3、記錄程式執行時間
importtime
time_start=time.time()
time_end=time.time()
print('
totally cost
',time_end-time_start)
4、python 字串拼接
join()
5、python 按行讀文字檔案,並解決檔名包含中文問題
defreadlines(filename):
uipath = unicode(filename, "
utf8")
uipath
with open(uipath,'r
') as file_object:
contents =file_object.readlines()
return contents
6、python 字串分隔
=「***.yyy.zzz」.split()
7、remove 某字元
item=item.replace('/','')8、字串包含
index()>-1,不包含時會有異常
find(),功能相同,但不包含時不會有異常
新手 常見問題
4.c風格字串與標準庫型別string不分 int i char ch cchars 這是c風格字串,結尾有 0 char mch mchars string str ch string類的建構函式接收ch,並作轉化 i strcmp ch,str error,有人喜歡把string類作引數輸入到s...
nodejs新手常見問題
關鍵字 cannot find nodejs 問題的出現 使用nodejs時,當我們書寫完 第二天重新開啟檔案執行時,可能會出現報錯現象,如 error cannot find module semver 通過提供的錯誤資訊可以解讀出是找不到semver這個模組了,這個時候就會有疑惑,為什麼昨天可以...
VS新手常見問題
問題一 打不開檔案 sample.h 原因 包含路徑不正確。解決方案 專案屬性 c 常規 包含路徑中加上sample.h所在的路徑 問題二 無法引用的外部符號 原因 這些函式或是變數使用的lib檔案沒有新增 解決方案 專案屬性 鏈結 輸入 附加依賴項中新增上所需要的lib檔案,並在專案屬性 鏈結 常...