I happened to fail to set character encoding in Python terminal on Windows. According to official guide, it\'s a piece of cake:
# -*- coding: utf-8 -*-
You should use unicode:
print u'Русский'
or switch to python3 (unicode by default).