質問編集履歴
1
エラー内容を追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -140,9 +140,117 @@
|
|
140
140
|
|
141
141
|
|
142
142
|
|
143
|
-
|
144
|
-
|
145
|
-
|
143
|
+
### 気になったところ
|
144
|
+
|
145
|
+
jsonとreでエラー?が出ている。
|
146
|
+
|
147
|
+
![イメージ説明](a6d40a77eb6b71b4209bce0fa67d3542.png)
|
148
|
+
|
149
|
+
```json
|
150
|
+
|
151
|
+
"json" is not accessedPylance
|
152
|
+
|
153
|
+
(module) json
|
154
|
+
|
155
|
+
|
156
|
+
|
157
|
+
JSON (JavaScript Object Notation) <http://json.org> is a subset of JavaScript syntax (ECMA-262 3rd edition) used as a lightweight data interchange format.
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
json exposes an API familiar to users of the standard library marshal and pickle modules. It is derived from a version of the externally maintained simplejson library.
|
162
|
+
|
163
|
+
|
164
|
+
|
165
|
+
Encoding basic Python object hierarchies:
|
166
|
+
|
167
|
+
|
168
|
+
|
169
|
+
>>> import json
|
170
|
+
|
171
|
+
>>> json.dumps(['foo', {'bar': ('baz', None, 1.0, 2)}])
|
172
|
+
|
173
|
+
'["foo", {"bar": ["baz", null, 1.0, 2]}]'
|
174
|
+
|
175
|
+
>>> print(json.dumps("\"foo\bar"))
|
176
|
+
|
177
|
+
----------------------日本語訳-----------------
|
178
|
+
|
179
|
+
「json」はPylanceにアクセスできません。
|
180
|
+
|
181
|
+
(モジュール)json
|
182
|
+
|
183
|
+
|
184
|
+
|
185
|
+
JSON(JavaScriptObjectNotation)<http:/>は、軽量データ交換フォーマットとして使用されるJavaScript構文(ECMA-2623rdEdition)のサブセットです。
|
186
|
+
|
187
|
+
|
188
|
+
|
189
|
+
jsonは標準ライブラリマーシャルおよびピクルスモジュールのユーザに馴染みのあるAPIを公開する。 これは外部で管理されている単純なjsonライブラリのバージョンから派生したものである。
|
190
|
+
|
191
|
+
|
192
|
+
|
193
|
+
基本的なPythonオブジェクト階層の符号化:
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
>>>インポートjson
|
198
|
+
|
199
|
+
>>>json.dumps(['foo'、'bar':('baz'、None、1.0、2)})
|
200
|
+
|
201
|
+
'''foo'''バー:["baz",null,1.0,2]]''
|
202
|
+
|
203
|
+
>>>print(json.publish("\"\"foo\bar"))
|
204
|
+
|
205
|
+
```
|
206
|
+
|
207
|
+
|
208
|
+
|
209
|
+
```re
|
210
|
+
|
211
|
+
"re" is not accessedPylance
|
212
|
+
|
213
|
+
(module) re
|
214
|
+
|
215
|
+
Support for regular expressions (RE).
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
This module provides regular expression matching operations similar to those found in Perl. It supports both 8-bit and Unicode strings; both the pattern and the strings being processed can contain null bytes and characters outside the US ASCII range.
|
220
|
+
|
221
|
+
|
222
|
+
|
223
|
+
Regular expressions can contain both special and ordinary characters. Most ordinary characters, like "A", "a", or "0", are the simplest regular expressions; they simply match themselves. You can concatenate ordinary characters, so last matches the string 'last'.
|
224
|
+
|
225
|
+
|
226
|
+
|
227
|
+
The special characters are:
|
228
|
+
|
229
|
+
"." Matches any character except a newline. "^" Matches the start of the string. "$" Matches the end of the string or just before the newline at
|
230
|
+
|
231
|
+
----------------------日本語訳-----------------
|
232
|
+
|
233
|
+
「re」はPylanceにアクセスできません。
|
234
|
+
|
235
|
+
(モジュール)re
|
236
|
+
|
237
|
+
正規表現(RE)のサポート。
|
238
|
+
|
239
|
+
|
240
|
+
|
241
|
+
このモジュールでは、Perlと同様の正規表現照合操作を提供します。 8ビット文字列とUnicode文字列の両方をサポートします。パターンと処理中の文字列の両方にヌルバイトとUSASCII範囲外の文字を含めることができます。
|
242
|
+
|
243
|
+
|
244
|
+
|
245
|
+
正規表現には、特殊文字と通常文字の両方を含めることができます。 「A」、「a」、または「0」のような一般的な文字は、最も単純な正規表現であり、それらは単に自分自身と一致するだけです。 通常の文字を連結できるため、lastは文字列「last」と一致します。
|
246
|
+
|
247
|
+
|
248
|
+
|
249
|
+
特殊文字は次のとおりです。
|
250
|
+
|
251
|
+
""。改行以外の任意の文字と一致します。 "^"文字列の先頭と一致します。 "$"文字列の末尾、または次の改行の直前と一致します。
|
252
|
+
|
253
|
+
```
|
146
254
|
|
147
255
|
|
148
256
|
|