Zadania za listopad

This commit is contained in:
Maksim Sysouev 2024-12-07 15:24:01 +01:00
parent e856b93668
commit 78dff8c415
4 changed files with 145 additions and 0 deletions

Binary file not shown.

70
2024_11_18/wisitowki.xml Normal file
View File

@ -0,0 +1,70 @@
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:simpleType name="LimitedString">
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
<xs:element name="wizitowki">
<xs:complexType>
<xs:sequence>
<xs:element name="wizitowka" maxOccurs="unbounded">
<xs:complexType>
<xs:sequence>
<xs:element name="imie" type="LimitedString"/>
<xs:element name="nazwisko" type="LimitedString"/>
<xs:element name="telefon">
<xs:simpleType>
<xs:restriction base="xs:integer">
<xs:minExclusive value="000000000"/>
<xs:maxExclusive value="999999999"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="email">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[\w\.-]+@([\w-]+\.)+[\w-]{2,4}"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="adres_pocztowy" type="LimitedString"/>
<xs:element name="kod_pocztowy">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[0-9]{2}-[0-9]{3}"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
<?xml version="1.0"?>
<wizitowki>
<wizitowka>
<imie>
Maksim
</imie>
<nazwisko>
Sysoyeu
</nazwisko>
<telefon>
789839386
</telefon>
<email>
m@gmail.com
</email>
<adres_pocztowy>
test
</adres_pocztowy>
<kod_pocztowy>
60-635
</kod_pocztowy>
</wizitowka>
</wizitowki>

64
2024_11_25/dz1.json Normal file
View File

@ -0,0 +1,64 @@
{
"library": [
{
"book_id": 1,
"title": "Władca Pierścieni",
"author": "J.R.R. Tolkien",
"year": 1954
},
{
"book_id": 2,
"title": "Harry Potter i Kamień Filozoficzny",
"author": "J.K. Rowling",
"year": 1997
},
{
"book_id": 3,
"title": "1984",
"author": "George Orwell",
"year": 1949
},
{
"book_id": 4,
"title": "Zbrodnia i Kara",
"author": "Fiodor Dostojewski",
"year": 1866
},
{
"book_id": 5,
"title": "To Kill a Mockingbird",
"author": "Harper Lee",
"year": 1960
},
{
"book_id": 6,
"title": "Wieża Jaskółki",
"author": "Andrzej Sapkowski",
"year": 1997
},
{
"book_id": 7,
"title": "1984",
"author": "George Orwell",
"year": 1948
},
{
"book_id": 8,
"title": "My",
"author": "Jewgienij Zamiatin",
"year": 1921
},
{
"book_id": 9,
"title": "Dziady III",
"author": "Adam Mickiewicz",
"year": 1832
},
{
"book_id": 10,
"title": "Hamlet",
"author": "William Shakespeare",
"year": 1600
}
]
}

11
2024_11_25/dz2.csv Normal file
View File

@ -0,0 +1,11 @@
id,typ,cena,stan
101,Suszarka,100,"w trakcie"
102,Czekolad,20,"dostarczone"
103,Ciastka,42,"w trakcie"
104,Książka,55,"odmowa"
105,Skarpety,14,"dostarczone"
106,Pierścień,79,"opóźnione"
107,Buty,120,"w trakcie"
108,Naczynia,100,"dostarczone"
109,Odzież,75,"odmowa"
110,Bransoletka,82,"dostarczone"
1 id typ cena stan
2 101 Suszarka 100 w trakcie
3 102 Czekolad 20 dostarczone
4 103 Ciastka 42 w trakcie
5 104 Książka 55 odmowa
6 105 Skarpety 14 dostarczone
7 106 Pierścień 79 opóźnione
8 107 Buty 120 w trakcie
9 108 Naczynia 100 dostarczone
10 109 Odzież 75 odmowa
11 110 Bransoletka 82 dostarczone