回答編集履歴
1
追加説明
test
CHANGED
@@ -17,3 +17,27 @@
|
|
17
17
|
False
|
18
18
|
|
19
19
|
```
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
従って、以下のコードを実行しているのと同じです。
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
```python
|
28
|
+
|
29
|
+
fruits = ["apple","kiwi","plum"]
|
30
|
+
|
31
|
+
fruits_copy = fruits[:]
|
32
|
+
|
33
|
+
for f in fruits_copy:
|
34
|
+
|
35
|
+
if len(f) < 5:
|
36
|
+
|
37
|
+
fruits.insert(0,f)
|
38
|
+
|
39
|
+
fruits.pop()
|
40
|
+
|
41
|
+
print(fruits,end="")
|
42
|
+
|
43
|
+
```
|