質問編集履歴
2
うぇrt
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
python list
|
1
|
+
python list内をsumで結合したい
|
test
CHANGED
File without changes
|
1
sdfg
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
list内の数字を
|
1
|
+
list内の数字を足したいのですが解決できなくて困っています。
|
2
2
|
|
3
3
|
```python
|
4
4
|
|
@@ -11,3 +11,7 @@
|
|
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
|
+
と表示させたいです
|