Зміст курсу
Структури Даних в Python
Структури Даних в Python
Вилучення Інформації
Давайте створимо словник з назвою student
.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
Цей словник містить три пари ключ-значення:
Ключ | Значення |
---|---|
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
In a dictionary, you can retrieve an item by referencing its key. Here's an example of accessing the publication year of the book:
book = {"title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813} publication_year = book["year"] print(publication_year) # Output: 1813
Час практикуватися!
Swipe to show code editor
У вас є наступний словник:
Відобразіть значення для ключів Turkey
та Malta
.
Дякуємо за ваш відгук!
Вилучення Інформації
Давайте створимо словник з назвою student
.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
Цей словник містить три пари ключ-значення:
Ключ | Значення |
---|---|
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
In a dictionary, you can retrieve an item by referencing its key. Here's an example of accessing the publication year of the book:
book = {"title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813} publication_year = book["year"] print(publication_year) # Output: 1813
Час практикуватися!
Swipe to show code editor
У вас є наступний словник:
Відобразіть значення для ключів Turkey
та Malta
.
Дякуємо за ваш відгук!
Вилучення Інформації
Давайте створимо словник з назвою student
.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
Цей словник містить три пари ключ-значення:
Ключ | Значення |
---|---|
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
In a dictionary, you can retrieve an item by referencing its key. Here's an example of accessing the publication year of the book:
book = {"title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813} publication_year = book["year"] print(publication_year) # Output: 1813
Час практикуватися!
Swipe to show code editor
У вас є наступний словник:
Відобразіть значення для ключів Turkey
та Malta
.
Дякуємо за ваш відгук!
Давайте створимо словник з назвою student
.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
Цей словник містить три пари ключ-значення:
Ключ | Значення |
---|---|
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
In a dictionary, you can retrieve an item by referencing its key. Here's an example of accessing the publication year of the book:
book = {"title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813} publication_year = book["year"] print(publication_year) # Output: 1813
Час практикуватися!
Swipe to show code editor
У вас є наступний словник:
Відобразіть значення для ключів Turkey
та Malta
.