質問編集履歴
1
書式の変更
title
CHANGED
File without changes
|
body
CHANGED
@@ -9,8 +9,8 @@
|
|
9
9
|
```
|
10
10
|
|
11
11
|
### 該当のソースコード
|
12
|
+
```python
|
12
13
|
|
13
|
-
|
14
14
|
def star(xy, r, c):
|
15
15
|
x=xy[0]
|
16
16
|
y=xy[1]
|
@@ -29,4 +29,5 @@
|
|
29
29
|
colors=["red","green","yellow","orange"]
|
30
30
|
r=random.randint(0,3)
|
31
31
|
e=colors[r]
|
32
|
-
show_shape(star((x,y),1,e))
|
32
|
+
show_shape(star((x,y),1,e))
|
33
|
+
```
|