Changes between Version 16 and Version 17 of Python
- Timestamp:
- 08/15/10 22:37:37 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Python
v16 v17 143 143 }}} 144 144 * 詳細は pydoc encodings 145 146 === Pretty Print === 147 * 普通に pprint を使うとこんなことになるので, 148 {{{ 149 #!python 150 >>> pprint.pprint({'ほげ': 'はげ', 'ひげ': 'ふげ'}) 151 {'\xa4\xd2\xa4\xb2': '\xa4\xd5\xa4\xb2', 152 '\xa4\xdb\xa4\xb2': '\xa4\xcf\xa4\xb2'} 153 }}} 154 * eval してやる 155 {{{ 156 #!python 157 >>> print eval('"""%s"""' % pprint.pformat({'ほげ': 'はげ', 'ひげ': 'ふげ'})) 158 {'ひげ': 'ふげ', 159 'ほげ': 'はげ'} 160 }}} 145 161 146 162 == 行列の行と列を入れ替えるワンライナー ==