Unsupported characters in input In Python IDLE

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

When I done message given by IDLE is

Unsupported characters         


        
3条回答
  •  时光取名叫无心
    2020-12-21 11:10

    This seems to be a known bug in the 2.x IDLE console: http://bugs.python.org/issue15809. A fix was made for Python 3.x, but doesn't appear to be backported.

    Instead, use an alternative console, such as iPython/Jupyter, or a fully-fledged IDE, such as PyCharm.

提交回复
热议问题