回答編集履歴

1

引数間違いの修正

2020/03/29 10:38

投稿

bsdfan
bsdfan

スコア4560

test CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
 
8
8
 
9
- pipe = subprocess.Popen('random.exe', stdin=subprocess.PIPE, stdout=subprocess.PIPE)
9
+ pipe = subprocess.Popen(['random.exe'], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
10
10
 
11
11
  ```
12
12