1. 程式人生 > >python3 ValueError: source code string cannot contain null bytes

python3 ValueError: source code string cannot contain null bytes

從windows系統拷貝到linux系統pycharm中時經常會多一些空字串,導致執行python指令碼報錯,“source code string cannot contain null bytes”
而pycharm中是無法察覺空字串的(哪位朋友有解決辦法,麻煩高訴我一下,不勝感激)
用vi開啟檔案才能看出來,多了很多“^@”,即空字元(ascii 碼 0,在程式裡一般寫作”\0”),在 vim 裡就顯示成 ^@。
替換命令

:%s/\%x00//g