質問編集履歴
1
エラー内容の編集
test
CHANGED
File without changes
|
test
CHANGED
@@ -4,7 +4,9 @@
|
|
4
4
|
|
5
5
|
```python
|
6
6
|
|
7
|
-
tG.add_edge((3,1.0),(5, 200.0){'time': 1000, 'cost': 3000})
|
7
|
+
tG.add_edge[((3,1.0),(5, 200.0),{'time': 1000, 'cost': 3000})]
|
8
|
+
|
9
|
+
nx.write_edgelist(tG, "時間拡大.edgelist")
|
8
10
|
|
9
11
|
```
|
10
12
|
|
@@ -12,16 +14,20 @@
|
|
12
14
|
|
13
15
|
```
|
14
16
|
|
15
|
-
|
17
|
+
TypeError Traceback (most recent call last)
|
16
18
|
|
17
|
-
|
19
|
+
<ipython-input-4-e79c246f4ba9> in <module>
|
18
20
|
|
19
|
-
|
21
|
+
----> 1 tG.add_edge[((3,1.0),(5, 200.0),{'time': 1000, 'cost': 3000})]
|
20
22
|
|
23
|
+
2 nx.write_edgelist(tG, "時間拡大.edgelist")
|
24
|
+
|
25
|
+
|
26
|
+
|
21
|
-
|
27
|
+
TypeError: 'method' object is not subscriptable
|
22
28
|
|
23
29
|
```
|
24
30
|
|
25
|
-
|
31
|
+
|
26
32
|
|
27
33
|
よろしくお願い致します。
|