質問編集履歴
1
print(i * 3)をprint(s * 3)に変更しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
s = "abc"
|
22
22
|
|
23
|
-
print(
|
23
|
+
print(s * 3)
|
24
24
|
|
25
25
|
>>>abcabcabc
|
26
26
|
|