質問編集履歴

1

エラー内容の編集

2021/10/23 10:46

投稿

Maaxuhbd
Maaxuhbd

スコア7

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
- File "<ipython-input-23-ec23a83c763f>", line 1
17
+ TypeError Traceback (most recent call last)
16
18
 
17
- tG.add_edge((3,1),(5, 200){'time': 1000, 'cost': 3000})
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
- SyntaxError: invalid syntax
27
+ TypeError: 'method' object is not subscriptable
22
28
 
23
29
  ```
24
30
 
25
- 構文が間違っているとあるが何が間違っているか分かりません。
31
+
26
32
 
27
33
  よろしくお願い致します。