質問編集履歴

1

functionAを追記

2018/01/23 02:00

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -28,4 +28,20 @@
28
28
 
29
29
  f = round(e / c * b, 2)
30
30
 
31
+
32
+
33
+ def functionA(json):
34
+
35
+ result = None
36
+
37
+ try:
38
+
39
+ result = json["xxx"]["yyy"]
40
+
41
+ except Exception as e:
42
+
43
+ return
44
+
45
+ return result
46
+
31
47
  ```