質問編集履歴
2
誤記
test
CHANGED
File without changes
|
test
CHANGED
@@ -52,9 +52,9 @@
|
|
52
52
|
|
53
53
|
@Halo(text='Loading', spinner='dots')
|
54
54
|
|
55
|
-
def create(output
|
55
|
+
def create(outputfile):
|
56
56
|
|
57
|
-
with open(output
|
57
|
+
with open(outputfile, 'w') as f:
|
58
58
|
|
59
59
|
|
60
60
|
|
1
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -21,3 +21,57 @@
|
|
21
21
|
何か解決方法をお教えいただけると幸いです。
|
22
22
|
|
23
23
|
よろしくお願いいたします。
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
実行時のコードは下記です。
|
28
|
+
|
29
|
+
```python
|
30
|
+
|
31
|
+
import sys
|
32
|
+
|
33
|
+
import re
|
34
|
+
|
35
|
+
import datetime
|
36
|
+
|
37
|
+
import pandas as pd
|
38
|
+
|
39
|
+
import os
|
40
|
+
|
41
|
+
import shutil
|
42
|
+
|
43
|
+
import csv
|
44
|
+
|
45
|
+
import math
|
46
|
+
|
47
|
+
import numpy as np
|
48
|
+
|
49
|
+
from halo import Halo
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
@Halo(text='Loading', spinner='dots')
|
54
|
+
|
55
|
+
def create(outputconfigfile):
|
56
|
+
|
57
|
+
with open(outputconfigfile, 'w') as f:
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
print("!", file=f)
|
62
|
+
|
63
|
+
|
64
|
+
|
65
|
+
|
66
|
+
|
67
|
+
create("test.txt")
|
68
|
+
|
69
|
+
```
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
import pandas as pdかfrom halo import Haloを削除するとエラーは出なくなります。
|
74
|
+
|
75
|
+
(関数内で実際にはdataframeを処理していたりしますが、上記コードでも同様のエラーが出ます)
|
76
|
+
|
77
|
+
またこのエラーが出ても出力結果は問題ないです。
|