Python中踩過的坑

2021-10-17 10:49:08 字數 482 閱讀 6763

1,利用win32呼叫spk語音,只能在main中呼叫

2,打包專案不能執行,試試:pyinstaller -fw main.py -p .\venv\lib\site-packages 

f - 強制打包成.exe檔案,沒有資料夾的

w - 不要小黑窗

p - 指定庫路徑,不能執行關鍵就是少了這引數

3,json庫,神坑,這個庫里坑太多了,js與python互動中文處理:

// 把字串中的漢字轉換成unicode

export function tounicode(str)

var unicode = '';

for (var i = 0; i < str.length; i++) else

} return unicode;

}// 判斷字元是否為漢字,

export function ischinese(s)

Python 踩過的坑

unicodedecodeerror utf 8 codec can t decode bytes in position 15 16 invalid continuation byte case with open d 360movedata users 2506 desktop asrs dat...

Tensorflow中踩過的坑

1.程式報錯 feed的值不能是乙個tensor,只能是標量 字串 列表 陣列等,所以不能用tf.reshape,應該使用np.reshape。with tf.session as sess tf.global variables initializer run v x tf.reshape mni...

git踩過的坑

4.git 修改當前的project的使用者名稱的命令為 git config user.name 你的目標使用者名稱 git 修改當前的project提交郵箱的命令為 git config user.email 你的目標郵箱名 如果你要修改當前全域性的使用者名稱和郵箱時,需要在上面的兩條命令中新增...