Files
freeCodeCamp/curriculum/challenges/ukrainian/07-scientific-computing-with-python/python-for-everybody/web-services-xml.md
2023-09-05 14:30:16 +05:30

48 lines
729 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
id: 5e7b9f0e0b6c005b0e76f07b
title: 'Вебсервіси: XML'
challengeType: 11
videoId: _pZ0srbg7So
bilibiliIds:
aid: 761920032
bvid: BV1n64y1x7KW
cid: 377332379
dashedName: web-services-xml
---
# --question--
## --text--
Що не так з наданим XML?:
```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