質問編集履歴

4

ソース編集

2021/03/12 04:26

投稿

nan_c
nan_c

スコア4

test CHANGED
File without changes
test CHANGED
@@ -4,23 +4,17 @@
4
4
 
5
5
  ```python
6
6
 
7
- コード
8
-
9
- ```
10
-
11
-
12
-
13
7
  def __init__(self):
14
8
 
15
9
  self.topLevel.update_idletasks()
16
10
 
17
- ファイル保存ダイアログ
11
+ #ファイル保存ダイアログ
18
12
 
19
13
  def saveBox(dirName, fileName):
20
14
 
21
15
  fileTypes = [('MS-WORD', '.docx')]
22
16
 
23
- define options for opening
17
+ #define options for opening
24
18
 
25
19
  options = {}
26
20
 
@@ -33,3 +27,5 @@
33
27
 
34
28
 
35
29
  return tkinter.filedialog.asksaveasfile(mode='w', **options)
30
+
31
+ ```

3

ソース編集

2021/03/12 04:26

投稿

nan_c
nan_c

スコア4

test CHANGED
File without changes
test CHANGED
@@ -3,6 +3,10 @@
3
3
 
4
4
 
5
5
  ```python
6
+
7
+ コード
8
+
9
+ ```
6
10
 
7
11
 
8
12
 

2

ソース編集

2021/03/12 04:26

投稿

nan_c
nan_c

スコア4

test CHANGED
File without changes
test CHANGED
@@ -10,13 +10,13 @@
10
10
 
11
11
  self.topLevel.update_idletasks()
12
12
 
13
- # ファイル保存ダイアログ
13
+ ファイル保存ダイアログ
14
14
 
15
15
  def saveBox(dirName, fileName):
16
16
 
17
17
  fileTypes = [('MS-WORD', '.docx')]
18
18
 
19
- # define options for opening
19
+ define options for opening
20
20
 
21
21
  options = {}
22
22
 

1

ソース編集

2021/03/12 04:25

投稿

nan_c
nan_c

スコア4

test CHANGED
File without changes
test CHANGED
@@ -5,10 +5,6 @@
5
5
  ```python
6
6
 
7
7
 
8
-
9
- コード
10
-
11
- ```
12
8
 
13
9
  def __init__(self):
14
10