Форум сайта python.su
Python 3.5.2
#-*-coding:utf-8-*- input("Нажмите Enter ...")
╨Э╨░╨╢╨╝╨╕╤В╨╡ Enter ... Traceback (most recent call last): File "D:\CODE\Python\...\...\....py", line 3, in <module> input("╨Э╨░╨╢╨╝╨╕╤В╨╡ Enter ...") File "<string>", line 0 ^ SyntaxError: unexpected EOF while parsing
Офлайн
>>> s = '╨Э╨░╨╢╨╝╨╕╤В╨╡' >>> s.encode('cp866').decode('utf-8') 'Нажмите' >>>
Отредактировано py.user.next (Сен. 6, 2016 13:26:06)
Офлайн