Python error: SyntaxError: Non-ASCII character solution, nonasciicharacter

Source: Internet
Author: User

Python error: SyntaxError: Non-ASCII character solution, nonasciicharacter

Python error: SyntaxError: Non-ASCII character Solution

(1) Problem Description

When writing Python code, it is useful to output Chinese characters, but the above error is found after running. SyntaxError: Non-ASCII character '\ xe4' in file./common. py on line 2, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details
The connection to solve the problem is provided in the error prompt, so click to view it. Click here to open the link.

(2) Problem Solving

After learning the connection given in the error code, it is found that it is an encoding problem. If there are non-ASCII characters in python, you must declare the character format at the beginning of the Code. There are three methods to declare characters:

Select one of the three types, and add the specified encoding format at the beginning of the Code. It will solve the problem just now.

For example, I added:

#! /Usr/bin/python #-*-coding: UTF-8 -*-

This solves the problem of displaying Chinese characters.

Thank you for reading this article. I hope it will help you. Thank you for your support for this site!

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.