Зміст курсу
Структури Даних в Python
Структури Даних в Python
Створення Словника
Уявіть, що вам потрібно створити словник з назвою student
із такими парами:
Key | Value |
---|---|
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
Ознайомтеся з кодом для створення цього словника.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
У словнику ви можете використовувати будь-який не змінюваний тип даних як ключ. Наприклад, у словнику, який ми щойно розглядали, ключі - це рядки. Тепер створімо словник, в якому ключі - це числа.
countries = {4: 'Belgium', 2: 'Finland', 7: 'China', 5: 'Cyprus'} print(countries)
Пам'ятайте, значення, пов'язане з конкретним ключем, може бути будь-чим - рядками, числами, списками тощо.
book = {"title": "1984", "author": "George Orwell", "title": "Animal Farm"} print(book) # Output: {'title': 'Animal Farm', 'author': 'George Orwell'}
In this case, the second "title"
key with the value "Animal Farm"
overwrites the first "title"
key.
Swipe to show code editor
Create a dictionary named library to represent a small library. The dictionary should have three keys: title, author, and year. Each key should map to a specific value of your choice.
Decide the values for each key:
- title: the name of the book.
- author: the name of the writer.
- year: the year the book was published.
Use curly braces {}
to create the dictionary. Each key-value pair is written as key: value
, separated by commas.
Here is a quick idea:
"1984"
, "George Orwell"
, 1949
.
Дякуємо за ваш відгук!
Створення Словника
Уявіть, що вам потрібно створити словник з назвою student
із такими парами:
Key | Value |
---|---|
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
Ознайомтеся з кодом для створення цього словника.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
У словнику ви можете використовувати будь-який не змінюваний тип даних як ключ. Наприклад, у словнику, який ми щойно розглядали, ключі - це рядки. Тепер створімо словник, в якому ключі - це числа.
countries = {4: 'Belgium', 2: 'Finland', 7: 'China', 5: 'Cyprus'} print(countries)
Пам'ятайте, значення, пов'язане з конкретним ключем, може бути будь-чим - рядками, числами, списками тощо.
book = {"title": "1984", "author": "George Orwell", "title": "Animal Farm"} print(book) # Output: {'title': 'Animal Farm', 'author': 'George Orwell'}
In this case, the second "title"
key with the value "Animal Farm"
overwrites the first "title"
key.
Swipe to show code editor
Create a dictionary named library to represent a small library. The dictionary should have three keys: title, author, and year. Each key should map to a specific value of your choice.
Decide the values for each key:
- title: the name of the book.
- author: the name of the writer.
- year: the year the book was published.
Use curly braces {}
to create the dictionary. Each key-value pair is written as key: value
, separated by commas.
Here is a quick idea:
"1984"
, "George Orwell"
, 1949
.
Дякуємо за ваш відгук!
Створення Словника
Уявіть, що вам потрібно створити словник з назвою student
із такими парами:
Key | Value |
---|---|
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
Ознайомтеся з кодом для створення цього словника.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
У словнику ви можете використовувати будь-який не змінюваний тип даних як ключ. Наприклад, у словнику, який ми щойно розглядали, ключі - це рядки. Тепер створімо словник, в якому ключі - це числа.
countries = {4: 'Belgium', 2: 'Finland', 7: 'China', 5: 'Cyprus'} print(countries)
Пам'ятайте, значення, пов'язане з конкретним ключем, може бути будь-чим - рядками, числами, списками тощо.
book = {"title": "1984", "author": "George Orwell", "title": "Animal Farm"} print(book) # Output: {'title': 'Animal Farm', 'author': 'George Orwell'}
In this case, the second "title"
key with the value "Animal Farm"
overwrites the first "title"
key.
Swipe to show code editor
Create a dictionary named library to represent a small library. The dictionary should have three keys: title, author, and year. Each key should map to a specific value of your choice.
Decide the values for each key:
- title: the name of the book.
- author: the name of the writer.
- year: the year the book was published.
Use curly braces {}
to create the dictionary. Each key-value pair is written as key: value
, separated by commas.
Here is a quick idea:
"1984"
, "George Orwell"
, 1949
.
Дякуємо за ваш відгук!
Уявіть, що вам потрібно створити словник з назвою student
із такими парами:
Key | Value |
---|---|
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
Ознайомтеся з кодом для створення цього словника.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
У словнику ви можете використовувати будь-який не змінюваний тип даних як ключ. Наприклад, у словнику, який ми щойно розглядали, ключі - це рядки. Тепер створімо словник, в якому ключі - це числа.
countries = {4: 'Belgium', 2: 'Finland', 7: 'China', 5: 'Cyprus'} print(countries)
Пам'ятайте, значення, пов'язане з конкретним ключем, може бути будь-чим - рядками, числами, списками тощо.
book = {"title": "1984", "author": "George Orwell", "title": "Animal Farm"} print(book) # Output: {'title': 'Animal Farm', 'author': 'George Orwell'}
In this case, the second "title"
key with the value "Animal Farm"
overwrites the first "title"
key.
Swipe to show code editor
Create a dictionary named library to represent a small library. The dictionary should have three keys: title, author, and year. Each key should map to a specific value of your choice.
Decide the values for each key:
- title: the name of the book.
- author: the name of the writer.
- year: the year the book was published.
Use curly braces {}
to create the dictionary. Each key-value pair is written as key: value
, separated by commas.
Here is a quick idea:
"1984"
, "George Orwell"
, 1949
.