回答編集履歴

3

修正

2020/09/09 02:31

投稿

nto
nto

スコア1438

test CHANGED
@@ -88,7 +88,7 @@
88
88
 
89
89
  with open(file, 'r') as f:
90
90
 
91
- filedata = f.read().replace('\n','')
91
+ filedata = f.read()
92
92
 
93
93
  filename = tk.filedialog.askopenfilename(initialdir=filedata)
94
94
 
@@ -108,7 +108,7 @@
108
108
 
109
109
  with open(file, 'w') as f:
110
110
 
111
- print(parent_dir, file=f)
111
+ print(parent_dir, end='', file=f)
112
112
 
113
113
 
114
114
 

2

修正

2020/09/09 02:31

投稿

nto
nto

スコア1438

test CHANGED
@@ -88,7 +88,7 @@
88
88
 
89
89
  with open(file, 'r') as f:
90
90
 
91
- filedata = f.read()
91
+ filedata = f.read().replace('\n','')
92
92
 
93
93
  filename = tk.filedialog.askopenfilename(initialdir=filedata)
94
94
 

1

追記

2020/09/09 02:28

投稿

nto
nto

スコア1438

test CHANGED
@@ -123,3 +123,7 @@
123
123
  app.mainloop()
124
124
 
125
125
  ```
126
+
127
+ ### 追記
128
+
129
+ モジュールのインポートですが`import tkinter as tk`と`import tkinter as *`が混在するのはあまり好ましくありません。どちらかで統一しましょう。