Зміст курсу
Структури Даних в Python
Структури Даних в Python
Додавання Eлементів
Давайте створимо словник під назвою student
.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
Ось як ви можете додати пару ключ-значення до словника.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} student['country'] = 'USA' print(student)
На даний момент словник student
включає такі пари:
Key | Value |
---|---|
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
'country' | 'USA' |
Примітка
Одинарні
' '
та подвійні" "
лапки в Python є взаємозамінними та еквівалентними.
Note
Single
' '
and double" "
quotes in Python are interchangeable and equivalent.
book = {"title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813, "genre": "Romance"} book["year"] = 1815 print(book)
Note
Single
' '
and double" "
quotes in Python are interchangeable and equivalent.
Swipe to show code editor
Update the book
dictionary by adding a new key called "available"
with a value of True
to indicate the book's availability in the library.
Дякуємо за ваш відгук!
Додавання Eлементів
Давайте створимо словник під назвою student
.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
Ось як ви можете додати пару ключ-значення до словника.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} student['country'] = 'USA' print(student)
На даний момент словник student
включає такі пари:
Key | Value |
---|---|
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
'country' | 'USA' |
Примітка
Одинарні
' '
та подвійні" "
лапки в Python є взаємозамінними та еквівалентними.
Note
Single
' '
and double" "
quotes in Python are interchangeable and equivalent.
book = {"title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813, "genre": "Romance"} book["year"] = 1815 print(book)
Note
Single
' '
and double" "
quotes in Python are interchangeable and equivalent.
Swipe to show code editor
Update the book
dictionary by adding a new key called "available"
with a value of True
to indicate the book's availability in the library.
Дякуємо за ваш відгук!
Додавання Eлементів
Давайте створимо словник під назвою student
.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
Ось як ви можете додати пару ключ-значення до словника.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} student['country'] = 'USA' print(student)
На даний момент словник student
включає такі пари:
Key | Value |
---|---|
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
'country' | 'USA' |
Примітка
Одинарні
' '
та подвійні" "
лапки в Python є взаємозамінними та еквівалентними.
Note
Single
' '
and double" "
quotes in Python are interchangeable and equivalent.
book = {"title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813, "genre": "Romance"} book["year"] = 1815 print(book)
Note
Single
' '
and double" "
quotes in Python are interchangeable and equivalent.
Swipe to show code editor
Update the book
dictionary by adding a new key called "available"
with a value of True
to indicate the book's availability in the library.
Дякуємо за ваш відгук!
Давайте створимо словник під назвою student
.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} print(student)
Ось як ви можете додати пару ключ-значення до словника.
student = {'first name': 'Ann', 'last name': 'Elliot', 'city': 'New York'} student['country'] = 'USA' print(student)
На даний момент словник student
включає такі пари:
Key | Value |
---|---|
'first name' | 'Ann' |
'last name' | 'Elliot' |
'city' | 'New York' |
'country' | 'USA' |
Примітка
Одинарні
' '
та подвійні" "
лапки в Python є взаємозамінними та еквівалентними.
Note
Single
' '
and double" "
quotes in Python are interchangeable and equivalent.
book = {"title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813, "genre": "Romance"} book["year"] = 1815 print(book)
Note
Single
' '
and double" "
quotes in Python are interchangeable and equivalent.
Swipe to show code editor
Update the book
dictionary by adding a new key called "available"
with a value of True
to indicate the book's availability in the library.