質問編集履歴
2
うぇrt
title
CHANGED
@@ -1,1 +1,1 @@
|
|
1
|
-
python list
|
1
|
+
python list内をsumで結合したい
|
body
CHANGED
File without changes
|
1
sdfg
title
CHANGED
File without changes
|
body
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
list内の数字を
|
1
|
+
list内の数字を足したいのですが解決できなくて困っています。
|
2
2
|
|
3
3
|
```python
|
4
4
|
|
@@ -10,4 +10,8 @@
|
|
10
10
|
Traceback (most recent call last):
|
11
11
|
File "<stdin>", line 1, in <module>
|
12
12
|
TypeError: unsupported operand type(s) for +: 'int' and 'str'
|
13
|
-
```
|
13
|
+
```
|
14
|
+
|
15
|
+
|
16
|
+
1+2+3 =6
|
17
|
+
と表示させたいです
|