回答編集履歴
1
2行になっていたので一行に
answer
CHANGED
@@ -3,8 +3,6 @@
|
|
3
3
|
1,別解 プレフィックスなし文字列をpython 2環境でもunicode文字列として扱う方法
|
4
4
|
[`__future__` モジュールの`unicode_literals`を使用](http://salinger.github.io/python/20140211-future-module/)
|
5
5
|
```Python
|
6
|
-
from __future__ import unicode_literals
|
7
|
-
|
8
6
|
# -*- coding: utf8 -*-
|
9
7
|
from __future__ import unicode_literals
|
10
8
|
|