質問編集履歴
1
確認結果の画像を添付
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
開発環境:jupyter lab
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
|
6
|
+
|
1
7
|
下記のurlを変数に代入すると「&」が「&」に変わってしまいます。
|
2
8
|
|
3
9
|
いくつか方法を試したのですが、上手くいかないので、ご教授いただけますと幸いです。
|
@@ -8,7 +14,7 @@
|
|
8
14
|
|
9
15
|
url = "https://race.netkeiba.com/odds/index.html?type=b1&race_id=202105021201"
|
10
16
|
|
11
|
-
|
17
|
+
print(url)
|
12
18
|
|
13
19
|
# 結果
|
14
20
|
|
@@ -24,7 +30,9 @@
|
|
24
30
|
|
25
31
|
```python
|
26
32
|
|
27
|
-
"https://race.netkeiba.com/odds/index.html" + "?type=b1&race_id=202105021201"
|
33
|
+
url = "https://race.netkeiba.com/odds/index.html" + "?type=b1&race_id=202105021201"
|
34
|
+
|
35
|
+
print(url)
|
28
36
|
|
29
37
|
#結果 (変わらず)
|
30
38
|
|
@@ -42,7 +50,9 @@
|
|
42
50
|
|
43
51
|
```python
|
44
52
|
|
45
|
-
"h(ttps://race.netkeiba.com/odds/index.html?type=b1&race_id=202105021201"
|
53
|
+
url = "h(ttps://race.netkeiba.com/odds/index.html?type=b1&race_id=202105021201"
|
54
|
+
|
55
|
+
print(url)
|
46
56
|
|
47
57
|
#結果(バックスラッシュが2つになった。ampの文字は消えなかった
|
48
58
|
|
@@ -58,10 +68,14 @@
|
|
58
68
|
|
59
69
|
x = "https://race.netkeiba.com/odds/index.html?type=b1&race_id=202105021201"
|
60
70
|
|
61
|
-
x.replace("&","&")
|
71
|
+
print(x.replace("&","&"))
|
62
72
|
|
63
73
|
#結果(;が2つになった)
|
64
74
|
|
65
75
|
#'https://race.netkeiba.com/odds/index.html?type=b1&;race_id=202105021201'
|
66
76
|
|
67
77
|
```
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
![イメージ説明](16f7517baf9c1ab6dfe78bb9b945da52.png)
|