回答編集履歴
2
コード修正
test
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
```
|
4
4
|
↓ 変更
|
5
5
|
```python
|
6
|
-
|
6
|
+
import random
|
7
7
|
```
|
8
8
|
|
9
9
|
または
|
1
別解を追記
test
CHANGED
@@ -5,3 +5,16 @@
|
|
5
5
|
```python
|
6
6
|
import random
|
7
7
|
```
|
8
|
+
|
9
|
+
または
|
10
|
+
```python
|
11
|
+
from random import random
|
12
|
+
#中略
|
13
|
+
x = random.randint(0,7)
|
14
|
+
```
|
15
|
+
↓ 変更
|
16
|
+
```python
|
17
|
+
from random import randint
|
18
|
+
#中略
|
19
|
+
x = randint(0,7)
|
20
|
+
```
|