回答編集履歴
2
追記
answer
CHANGED
@@ -9,4 +9,13 @@
|
|
9
9
|
|
10
10
|
print("Content-type: text/plain\n")
|
11
11
|
print("test")
|
12
|
+
```
|
13
|
+
または
|
14
|
+
```python
|
15
|
+
#!/usr/local/bin/python3
|
16
|
+
# -*- coding: utf8 -*-
|
17
|
+
|
18
|
+
print("Content-type: text/plain")
|
19
|
+
print("")
|
20
|
+
print("test")
|
12
21
|
```
|
1
コードの修正
answer
CHANGED
@@ -7,6 +7,6 @@
|
|
7
7
|
#!/usr/local/bin/python3
|
8
8
|
# -*- coding: utf8 -*-
|
9
9
|
|
10
|
-
print("Content-type: text/plain")
|
10
|
+
print("Content-type: text/plain\n")
|
11
11
|
print("test")
|
12
12
|
```
|