mirror of
https://github.com/Asabeneh/30-Days-Of-Python.git
synced 2026-06-12 21:01:48 +08:00
dictionaries
This commit is contained in:
parent
2b87ba3759
commit
a24d4140c4
@ -15,11 +15,11 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
[<< Day 6](../06_Day_Tuples/06_tuple.md) | [Day 8 >>](../08_Day/08_dictionary.md)
|
||||
[<< Day 6](../06_Day_Tuples/06_tuple.md) | [Day 8 >>](../08_Day_Dictionaries/08_dictionaries.md)
|
||||
|
||||

|
||||
|
||||
- [📘 Day 7](#%f0%9f%93%98-day-7)
|
||||
- [📘 Day 7](#-day-7)
|
||||
- [Set](#set)
|
||||
- [Creating a Set](#creating-a-set)
|
||||
- [Getting Set's Length](#getting-sets-length)
|
||||
@ -27,16 +27,16 @@
|
||||
- [Checking an Item](#checking-an-item)
|
||||
- [Adding Items to a Set](#adding-items-to-a-set)
|
||||
- [Removing Items from a Set](#removing-items-from-a-set)
|
||||
- [Clearing Items in a Set](#clearing-item-in-a-set)
|
||||
- [Clearing Items in a Set](#clearing-items-in-a-set)
|
||||
- [Deleting a Set](#deleting-a-set)
|
||||
- [Converting List to a Set](#converting-list-to-a-set)
|
||||
- [Converting List to Set](#converting-list-to-set)
|
||||
- [Joining Sets](#joining-sets)
|
||||
- [Finding Intersection Items](#finding-intersection-items)
|
||||
- [Checking Subsets and Super Sets](#checking-subsets-and-super-sets)
|
||||
- [Checking Subset and Super Set](#checking-subset-and-super-set)
|
||||
- [Checking the Difference Between Two Sets](#checking-the-difference-between-two-sets)
|
||||
- [Finding Symmetric Difference Between Two Sets](#finding-symmetric-difference-between-two-sets)
|
||||
- [Joining Sets](#joining-sets)
|
||||
- [💻 Exercises: Day 7](#%f0%9f%92%bb-exercises-day-7)
|
||||
- [Joining Sets](#joining-sets-1)
|
||||
- [💻 Exercises: Day 7](#-exercises-day-7)
|
||||
|
||||
# 📘 Day 7
|
||||
|
||||
@ -405,4 +405,4 @@ age = [22, 19, 24, 25, 26, 24, 25, 24]
|
||||
|
||||
🎉 CONGRATULATIONS ! 🎉
|
||||
|
||||
[<< Day 6](../06_Day_Tuples/06_tuple.md) | [Day 8 >>](../08_Day/08_dictionary.md)
|
||||
[<< Day 6](../06_Day_Tuples/06_tuple.md) | [Day 8 >>](../08_Day_Dictionaries/08_dictionaries.md)
|
||||
@ -1,5 +1,5 @@
|
||||
<div align="center">
|
||||
<h1> 30 Days Of Python: Day 7 - Dictionary</h1>
|
||||
<h1> 30 Days Of Python: Day 8 - Dictionary</h1>
|
||||
<a class="header-badge" target="_blank" href="https://www.linkedin.com/in/asabeneh/">
|
||||
<img src="https://img.shields.io/badge/style--5eba00.svg?label=LinkedIn&logo=linkedin&style=social">
|
||||
</a>
|
||||
@ -15,12 +15,12 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
[<< Day 7 ](../07_Day/07_set.md) | [Day 9 >>](../09_Day/09_conditional.md)
|
||||
[<< Day 7 ](../07_Day_Sets/07_sets.md) | [Day 9 >>](../09_Day_Conditionals/09_conditionals.md)
|
||||
|
||||

|
||||
|
||||
- [📘 Day 8](#%f0%9f%93%98-day-8)
|
||||
- [Dictionary](#dictionary)
|
||||
- [📘 Day 8](#-day-8)
|
||||
- [Dictionaries](#dictionaries)
|
||||
- [Creating a Dictionary](#creating-a-dictionary)
|
||||
- [Dictionary Length](#dictionary-length)
|
||||
- [Accessing Dictionary Items](#accessing-dictionary-items)
|
||||
@ -31,14 +31,14 @@
|
||||
- [Changing Dictionary to a List of Items](#changing-dictionary-to-a-list-of-items)
|
||||
- [Clearing a Dictionary](#clearing-a-dictionary)
|
||||
- [Deleting a Dictionary](#deleting-a-dictionary)
|
||||
- [Copying a Dictionary](#copying-a-dictionary)
|
||||
- [Copy a Dictionary](#copy-a-dictionary)
|
||||
- [Getting Dictionary Keys as a List](#getting-dictionary-keys-as-a-list)
|
||||
- [Getting Dictionary Values as a List](#getting-dictionary-values-as-list)
|
||||
- [💻 Exercises: Day 8](#%f0%9f%92%bb-exercises-day-8)
|
||||
- [Getting Dictionary Values as a List](#getting-dictionary-values-as-a-list)
|
||||
- [💻 Exercises: Day 8](#-exercises-day-8)
|
||||
|
||||
# 📘 Day 8
|
||||
|
||||
## Dictionary
|
||||
## Dictionaries
|
||||
|
||||
A dictionary is a collection of unordered, modifiable(mutable) paired (key: value) data type.
|
||||
|
||||
@ -338,4 +338,4 @@ print(values) # dict_values(['value1', 'value2', 'value3', 'value4'])
|
||||
|
||||
🎉 CONGRATULATIONS ! 🎉
|
||||
|
||||
[<< Day 7 ](../07_Day/07_set.md) | [Day 9 >>](../09_Day/09_conditional.md)
|
||||
[<< Day 7 ](../07_Day_Sets/07_sets.md) | [Day 9 >>](../09_Day_Conditionals/09_conditionals.md)
|
||||
Loading…
Reference in New Issue
Block a user