Files
freeCodeCamp/curriculum/challenges/japanese/23-python-for-everybody/python-for-everybody/web-services-xml.md
freeCodeCamp's Camper Bot 9c20069eb2 chore(i18n,learn): processed translations (#53819)
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2024-03-12 22:29:52 +05:30

695 B

id, title, challengeType, videoId, bilibiliIds, dashedName
id title challengeType videoId bilibiliIds dashedName
5e7b9f0e0b6c005b0e76f07b ウェブサービス: XML 11 _pZ0srbg7So
aid bvid cid
761920032 BV1n64y1x7KW 377332379
web-services-xml

--question--

--text--

次の XML で何が間違っていますか?

<person>
  <name>Chuck</name>
  <phone type="intl">
    +1 734 303 4456
  <email hide="yes" />
</person>

--answers--

email タグに終了タグがない。


スペースの記述が原因で XML が無効になる。


phone タグに終了タグがない。


プレーンテキストは UTF-8 を使用してエンコードする必要がある。

--video-solution--

3