回答編集履歴

1

修正

2020/09/12 09:04

投稿

tiitoi
tiitoi

スコア21956

test CHANGED
@@ -12,6 +12,28 @@
12
12
 
13
13
  photo_file = photo_file[0]
14
14
 
15
+ photo_file = flower # すでに記録されていた photo_file[0] の情報が消える
16
+
17
+ photo_file = photo_file[1]
18
+
19
+
20
+
21
+ return photo_file
22
+
23
+ ```
24
+
25
+
26
+
27
+ つまり、このコードは以下と同じであり、2枚の画像パスを返すという処理になっていません。
28
+
29
+
30
+
31
+ ```python
32
+
33
+ def select_img_file():
34
+
35
+ flower = random.sample(flowers, 2)
36
+
15
37
  photo_file = flower
16
38
 
17
39
  photo_file = photo_file[1]
@@ -24,28 +46,6 @@
24
46
 
25
47
 
26
48
 
27
- つまり、このコードは以下と同じであり、2枚の画像パスを返すという処理になっていません。
28
-
29
-
30
-
31
- ```python
32
-
33
- def select_img_file():
34
-
35
- flower = random.sample(flowers, 2)
36
-
37
- photo_file = flower
38
-
39
- photo_file = photo_file[1]
40
-
41
-
42
-
43
- return photo_file
44
-
45
- ```
46
-
47
-
48
-
49
49
  ```python
50
50
 
51
51
  a = 1