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
- 解決 Python UnicodeEncodeError 錯誤PythonUnicodeError
- SyntaxError: Non-ASCII character 與 Cannot decode using encoding "ascii" 錯誤解決ErrorASCIIEncoding
- SyntaxError: EOL while scanning string literal錯誤解決ErrorWhile
- ionic 開發中的一些錯誤
- 開機checking file錯誤的解決辦法
- Errno 9: Bad file descriptor in python socket錯誤處理薦Python
- Python開發人員常犯的幾個重大錯誤Python
- VMware vmdk錯誤: Failed to lock the file.AI
- iOS 開發錯誤集錦iOS
- 開發中遇到的錯誤
- leedcode-第一個錯誤的版本
- Unable to create index.lock File exists錯誤Index
- 記一次ORA-27037: unable to obtain file status錯誤AI
- Android開發錯誤集錦Android
- 前端開發--如何快速定位錯誤前端
- JPA 開發中遇到的錯誤
- 開發時犯得小錯誤
- Python檔案讀寫--錯誤一Python
- 記一次OPatch failed with error code 73錯誤AIError
- 錯誤:Dx unsupported class file version 52.0(解決)
- MySQL錯誤Incorrect file format解決方案薦MySqlORM
- 高德地圖使用cocoapods No such file or directory錯誤地圖
- /usr/bin/xauth: error in locking authority file錯誤Error
- TNS-04414 file error 錯誤解決Error
- [鴻蒙開發]真機轉模擬機執行出現錯誤: ERROR: Failed to find the incremental input file:鴻蒙ErrorAIREM
- Starting MySQL.The server quit without updating PID fileMySqlServerUI
- Python Template 錯誤Python
- Android NDK開發Crash錯誤定位Android
- Web開發常見性的錯誤Web
- webwork開發指南 是邏輯錯誤?Web
- LeetCode-278-第一個錯誤的版本LeetCode
- 執行py檔案 File "<stdin>", line 1 SyntaxError: invalid syntaxError
- linux解決“XXX is not in the sudoers file”錯誤Linux
- 【伺服器】關於錯誤:Smarty:unable to write file伺服器
- Mysql啟動錯誤-server PID file could not be foundMySqlServer