回答編集履歴

1

append another answer

2022/10/22 16:07

投稿

ps_aux_grep
ps_aux_grep

スコア1579

test CHANGED
@@ -7,3 +7,9 @@
7
7
  total += i
8
8
  print(total)
9
9
  ```
10
+
11
+ まぁそんなことしなくても`sum()`が使えます.
12
+ ```Python
13
+ for abc in abc_list:
14
+ print(sum(abc))
15
+ ```