質問編集履歴
2
あ
test
CHANGED
File without changes
|
test
CHANGED
@@ -7,6 +7,10 @@
|
|
7
7
|
-------sample.py 一緒のフォルダ
|
8
8
|
|
9
9
|
-------trans.py 一緒のフォルダ
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
#sample.py
|
10
14
|
|
11
15
|
|
12
16
|
|
@@ -30,16 +34,30 @@
|
|
30
34
|
|
31
35
|
|
32
36
|
|
33
|
-
import trans で定義
|
37
|
+
import trans で定義できているのではないでしょうか?
|
34
38
|
|
35
39
|
|
36
40
|
|
41
|
+
#sample.py
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
```ここに言語を入力
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
# !/usr/bin/env python
|
50
|
+
|
37
|
-
|
51
|
+
# coding: utf-8
|
38
52
|
|
39
53
|
|
40
54
|
|
41
55
|
def function():
|
42
56
|
|
57
|
+
|
43
58
|
|
59
|
+
print("★")
|
44
60
|
|
61
|
+
return recog_result_text
|
62
|
+
|
45
|
-
|
63
|
+
```
|
1
132
test
CHANGED
File without changes
|
test
CHANGED
@@ -31,3 +31,15 @@
|
|
31
31
|
|
32
32
|
|
33
33
|
import trans で定義しているのではないでしょうか?
|
34
|
+
|
35
|
+
|
36
|
+
|
37
|
+
もちろんtrans.pyの中には
|
38
|
+
|
39
|
+
|
40
|
+
|
41
|
+
def function():
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
があります。
|