回答編集履歴

2

ソースコードの修正

2021/12/12 09:27

投稿

Supernove
Supernove

スコア1154

test CHANGED
@@ -16,13 +16,13 @@
16
16
 
17
17
 
18
18
 
19
- query_word = u"おはよう"
19
+ query_word = "おはよう"
20
20
 
21
21
  files = {
22
22
 
23
23
  'apikey': (None, 'apikey'),
24
24
 
25
- 'query': (None, query_word),
25
+ 'query': (None, query_word.encode('utf-8')),
26
26
 
27
27
  }
28
28
 

1

ソースコードの修正

2021/12/12 09:27

投稿

Supernove
Supernove

スコア1154

test CHANGED
@@ -16,7 +16,7 @@
16
16
 
17
17
 
18
18
 
19
- query_word = "おはよう".encode('unicode_escape')
19
+ query_word = u"おはよう"
20
20
 
21
21
  files = {
22
22