Unsupported characters in input In Python IDLE

后端 未结 1 2044
别跟我提以往
别跟我提以往 2020-12-21 10:35
suffixes = {
    1: [\"ो\", \"े\", \"ू\", \"ु\", \"ी\", \"ि\", \"ा\"]}

When I done message given by IDLE is

Unsupported characters         


        
相关标签:
1条回答
  • 2020-12-21 10:50

    What encoding is your source file in?

    If it is UTF8, put the comment

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

    at the top of the file.

    0 讨论(0)
提交回复
热议问题