回答編集履歴
4
value_with_tax→value
test
CHANGED
@@ -34,7 +34,7 @@
|
|
34
34
|
|
35
35
|
# カンマうち
|
36
36
|
|
37
|
-
value_str = "{:,}".format(value
|
37
|
+
value_str = "{:,}".format(value)
|
38
38
|
|
39
39
|
return f'<p class="b_price">{value_str}円+税</p>'
|
40
40
|
|
3
変数名の修正
test
CHANGED
@@ -30,7 +30,7 @@
|
|
30
30
|
|
31
31
|
# 税抜
|
32
32
|
|
33
|
-
value = math.ceil(value / TAX)
|
33
|
+
value = math.ceil(value_with_tax / TAX)
|
34
34
|
|
35
35
|
# カンマうち
|
36
36
|
|
2
path大文字
test
CHANGED
@@ -44,7 +44,7 @@
|
|
44
44
|
|
45
45
|
# Pathオブジェクトを作成
|
46
46
|
|
47
|
-
html = Path(
|
47
|
+
html = Path(PATH)
|
48
48
|
|
49
49
|
# テキストを読み込み
|
50
50
|
|
1
pathlibメソッドのtypo
test
CHANGED
@@ -1,4 +1,6 @@
|
|
1
1
|
readlines()じゃなくてread()で良くないですか?
|
2
|
+
|
3
|
+
あとpathlib使ってないですよね?read_textとか便利ですよ
|
2
4
|
|
3
5
|
|
4
6
|
|
@@ -12,6 +14,12 @@
|
|
12
14
|
|
13
15
|
|
14
16
|
|
17
|
+
PATH = '/Users/~~.html'
|
18
|
+
|
19
|
+
TAX = 1.08
|
20
|
+
|
21
|
+
|
22
|
+
|
15
23
|
# 引数にmatchオブジェクトを受ける関数
|
16
24
|
|
17
25
|
def rep(m):
|
@@ -22,7 +30,7 @@
|
|
22
30
|
|
23
31
|
# 税抜
|
24
32
|
|
25
|
-
value = math.ceil(value /
|
33
|
+
value = math.ceil(value / TAX)
|
26
34
|
|
27
35
|
# カンマうち
|
28
36
|
|
@@ -32,7 +40,7 @@
|
|
32
40
|
|
33
41
|
|
34
42
|
|
35
|
-
|
43
|
+
|
36
44
|
|
37
45
|
# Pathオブジェクトを作成
|
38
46
|
|
@@ -40,7 +48,7 @@
|
|
40
48
|
|
41
49
|
# テキストを読み込み
|
42
50
|
|
43
|
-
html_text= html.readtext()
|
51
|
+
html_text= html.read_text()
|
44
52
|
|
45
53
|
# 正規表現で置き換え
|
46
54
|
|
@@ -48,7 +56,7 @@
|
|
48
56
|
|
49
57
|
# テキストを書き込み
|
50
58
|
|
51
|
-
html.write(html_text_mod)
|
59
|
+
html.write_text(html_text_mod)
|
52
60
|
|
53
61
|
```
|
54
62
|
|