回答編集履歴
1
追記
test
CHANGED
@@ -1,3 +1,29 @@
|
|
1
1
|
joblib.dump(〜) が作るファイルは[テキストファイルじゃありません](https://joblib.readthedocs.io/en/latest/persistence.html#persistence)。
|
2
2
|
|
3
3
|
テキストファイルじゃないものにtxtという拡張子を付けているので、PyCharmはテキストファイルとして読みこもうとしますが、PyCharmが扱えるすべてのエンコーディングで試してみても当然うまく読み出せん。それでエラーになります。
|
4
|
+
|
5
|
+
|
6
|
+
|
7
|
+
----
|
8
|
+
|
9
|
+
|
10
|
+
|
11
|
+
リストを単純に文字列に変換すると同じ形になるので、基本的なファイルへの書き出しで十分そうですね。
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
[https://docs.python.org/ja/3/tutorial/inputoutput.html#reading-and-writing-files](https://docs.python.org/ja/3/tutorial/inputoutput.html#reading-and-writing-files)
|
16
|
+
|
17
|
+
[https://docs.python.org/ja/3/library/functions.html#print](https://docs.python.org/ja/3/library/functions.html#print)
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
```python
|
22
|
+
|
23
|
+
with open("temp.txt", "w") as w:
|
24
|
+
|
25
|
+
print(temp_list, file=w)
|
26
|
+
|
27
|
+
```
|
28
|
+
|
29
|
+
でいいと思います。
|