Unsupported characters in input In Python IDLE

后端 未结 3 786
花落未央
花落未央 2020-12-21 10:38
suffixes = {
    1: [\"ो\", \"े\", \"ू\", \"ु\", \"ी\", \"ि\", \"ा\"]}

When I done message given by IDLE is

Unsupported characters         


        
3条回答
  •  我在风中等你
    2020-12-21 10:49

    What encoding is your source file in?

    If it is UTF8, put the comment

    # -*- coding: utf-8 -*-
    

    at the top of the file.

提交回复
热议问题