Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Створення Словника | Словник
Структури Даних в Python
course content

Зміст курсу

Структури Даних в Python

Структури Даних в Python

1. Список
2. Словник
3. Кортеж
4. Множина

bookСтворення Словника

Уявіть, що вам потрібно створити словник з назвою student із такими парами:

KeyValue
'first name''Ann'
'last name''Elliot'
'city''New York'

Ознайомтеся з кодом для створення цього словника.

12
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
copy

У словнику ви можете використовувати будь-який не змінюваний тип даних як ключ. Наприклад, у словнику, який ми щойно розглядали, ключі - це рядки. Тепер створімо словник, в якому ключі - це числа.

12
countries = {4: 'Belgium', 2: 'Finland', 7: 'China', 5: 'Cyprus'} print(countries)
copy

Пам'ятайте, значення, пов'язане з конкретним ключем, може бути будь-чим - рядками, числами, списками тощо.

12
book = {"title": "1984", "author": "George Orwell", "title": "Animal Farm"} print(book) # Output: {'title': 'Animal Farm', 'author': 'George Orwell'}
copy

In this case, the second "title" key with the value "Animal Farm" overwrites the first "title" key.

Завдання
test

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.

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 2. Розділ 1
toggle bottom row

bookСтворення Словника

Уявіть, що вам потрібно створити словник з назвою student із такими парами:

KeyValue
'first name''Ann'
'last name''Elliot'
'city''New York'

Ознайомтеся з кодом для створення цього словника.

12
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
copy

У словнику ви можете використовувати будь-який не змінюваний тип даних як ключ. Наприклад, у словнику, який ми щойно розглядали, ключі - це рядки. Тепер створімо словник, в якому ключі - це числа.

12
countries = {4: 'Belgium', 2: 'Finland', 7: 'China', 5: 'Cyprus'} print(countries)
copy

Пам'ятайте, значення, пов'язане з конкретним ключем, може бути будь-чим - рядками, числами, списками тощо.

12
book = {"title": "1984", "author": "George Orwell", "title": "Animal Farm"} print(book) # Output: {'title': 'Animal Farm', 'author': 'George Orwell'}
copy

In this case, the second "title" key with the value "Animal Farm" overwrites the first "title" key.

Завдання
test

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.

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 2. Розділ 1
toggle bottom row

bookСтворення Словника

Уявіть, що вам потрібно створити словник з назвою student із такими парами:

KeyValue
'first name''Ann'
'last name''Elliot'
'city''New York'

Ознайомтеся з кодом для створення цього словника.

12
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
copy

У словнику ви можете використовувати будь-який не змінюваний тип даних як ключ. Наприклад, у словнику, який ми щойно розглядали, ключі - це рядки. Тепер створімо словник, в якому ключі - це числа.

12
countries = {4: 'Belgium', 2: 'Finland', 7: 'China', 5: 'Cyprus'} print(countries)
copy

Пам'ятайте, значення, пов'язане з конкретним ключем, може бути будь-чим - рядками, числами, списками тощо.

12
book = {"title": "1984", "author": "George Orwell", "title": "Animal Farm"} print(book) # Output: {'title': 'Animal Farm', 'author': 'George Orwell'}
copy

In this case, the second "title" key with the value "Animal Farm" overwrites the first "title" key.

Завдання
test

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.

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Уявіть, що вам потрібно створити словник з назвою student із такими парами:

KeyValue
'first name''Ann'
'last name''Elliot'
'city''New York'

Ознайомтеся з кодом для створення цього словника.

12
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
copy

У словнику ви можете використовувати будь-який не змінюваний тип даних як ключ. Наприклад, у словнику, який ми щойно розглядали, ключі - це рядки. Тепер створімо словник, в якому ключі - це числа.

12
countries = {4: 'Belgium', 2: 'Finland', 7: 'China', 5: 'Cyprus'} print(countries)
copy

Пам'ятайте, значення, пов'язане з конкретним ключем, може бути будь-чим - рядками, числами, списками тощо.

12
book = {"title": "1984", "author": "George Orwell", "title": "Animal Farm"} print(book) # Output: {'title': 'Animal Farm', 'author': 'George Orwell'}
copy

In this case, the second "title" key with the value "Animal Farm" overwrites the first "title" key.

Завдання
test

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.

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Секція 2. Розділ 1
Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
We're sorry to hear that something went wrong. What happened?
some-alt