#!/usr/local/bin/python2 #coding:utf-8 class S(object): def __repr__(self): return ''.join([str(s) for s in [u'あ', 'い']]) print S()