python,開發錯誤一:SyntaxError: Non-UTF-8 code starting with '\xca' in file
錯誤截圖:
具體報錯資訊:
C:\Users\Administrator.DESKTOP-IFL2F1P\PycharmProjects\pythonProject\venv\Scripts\python.exe C:/Users/Administrator.DESKTOP-IFL2F1P/PycharmProjects/pythonProject/venv/IfElse.py
SyntaxError: Non-UTF-8 code starting with '\xca' in file C:\Users\Administrator.DESKTOP-IFL2F1P\PycharmProjects\pythonProject\venv\IfElse.py on line 5, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details
Process finished with exit code 1
處理方案:
案例一:
原始碼:
num=5 if num % 2 ==0 : print(str(num)+"是一個偶數") else : print(str(num)+"是一個奇數")
在程式碼開頭加上:
# -*- coding: gb2312 -*-
更改後:
# -*- coding: gb2312 -*- num=5 if num % 2 ==0 : print(str(num)+"是一個偶數") else : print(str(num)+"是一個奇數")
進行執行
C:\Users\Administrator.DESKTOP-IFL2F1P\PycharmProjects\pythonProject\venv\Scripts\python.exe C:/Users/Administrator.DESKTOP-IFL2F1P/PycharmProjects/pythonProject/venv/IfElse.py
5是一個奇數
Process finished with exit code 0
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29494175/viewspace-2841709/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Non-UTF-8 code starting with '\xe4'
- Python 錯誤 SyntaxError: invalid character in identifierPythonErrorIDE
- Python錯誤集錦:for x in range(5) ^ SyntaxError: invalid syntaxPythonError
- SyntaxError: EOL while scanning string literal錯誤解決ErrorWhile
- python開發者常犯的10個錯誤Python
- linux解決“XXX is not in the sudoers file”錯誤Linux
- ionic 開發中的一些錯誤
- Python開發人員常犯的幾個重大錯誤Python
- SyntaxError: Non-ASCII character 與 Cannot decode using encoding "ascii" 錯誤解決ErrorASCIIEncoding
- vs code配置Python開發環境Python開發環境
- Python檔案讀寫--錯誤一Python
- Android開發錯誤集錦Android
- 解決ubuntu系統“XXX is not in the sudoers file”錯誤Ubuntu
- 執行py檔案 File "<stdin>", line 1 SyntaxError: invalid syntaxError
- Code Review 常見的5個錯誤模式View模式
- Python 整合開發環境(IDE): VS CodePython開發環境IDE
- JPA 開發中遇到的錯誤
- 開發時犯得小錯誤
- Android NDK開發Crash錯誤定位Android
- Android開發:Android虛擬機器啟動錯誤Can't find 'Linux version ' string in kernel image fileAndroid虛擬機Linux
- 使用VS Code從零開始開發除錯.NET 5除錯
- dedeCMS 生成時提示 DedeTag Engine Create File False 錯誤False
- 2021年了,Python開發者不容錯過的7個VS Code擴充套件Python套件
- Python錯誤處理Python
- myeclipse中提示Hot Code Replace Failed提示窗錯誤EclipseAI
- [鴻蒙開發]真機轉模擬機執行出現錯誤: ERROR: Failed to find the incremental input file:鴻蒙ErrorAIREM
- 正確配置 Visual Studio Code 開發和除錯 TypeScript除錯TypeScript
- iOS開發除錯之報錯:Command /usr/bin/codesign failed with exit code 1iOS除錯AI
- 解決 Python UnicodeEncodeError 錯誤PythonUnicodeError
- Python部分錯誤總結Python
- python錯誤與異常Python
- Python錯誤重試方法Python
- 針對python錯誤 format()PythonORM
- Python最容易犯的錯誤,一定要警惕!Python
- win10無法進入系統提示file:\boot\bcd 錯誤程式碼code:0xc000000f修復方法Win10boot
- Python 之 錯誤,除錯和測試Python除錯
- docker中建立Nginx和php-pfm 報file not find .錯誤。DockerNginxPHP
- Uncaught SyntaxError: Unexpected token : 開發遇到的跨域問題Error跨域