mirror of
https://github.com/Asabeneh/30-Days-Of-Python.git
synced 2026-06-15 21:20:29 +08:00
Minor typo fix in Day 7
This commit is contained in:
parent
499555cb01
commit
e15a45c8d0
@ -22,7 +22,7 @@
|
||||
|
||||
# Day 7
|
||||
## Set
|
||||
Let me take you back to your elementary or high school Mathematics lesson. The Mathematics definition of set can be applied also in python. Se is a collection of unordered and unindexed distinct elements. In python set use to store unique items, and it is possible find union, intersection, difference, symmetric difference, subset, super set and disjoint set.
|
||||
Let me take you back to your elementary or high school Mathematics lesson. The Mathematics definition of set can be applied also in python. Set is a collection of unordered and unindexed distinct elements. In python set use to store unique items, and it is possible to find union, intersection, difference, symmetric difference, subset, super set and disjoint set.
|
||||
### Creating a set
|
||||
We use {} to create a set.
|
||||
* Creating an empty set
|
||||
@ -337,4 +337,4 @@ age = [22, 19, 24, 25, 26, 24, 25, 24]
|
||||
15. *I am a teacher and I love to inspire and teach people.* How many unique words have been used in the sentence.
|
||||
|
||||
|
||||
[<< Part 1 ](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme.md)| [Part 3 >>](#)
|
||||
[<< Part 1 ](https://github.com/Asabeneh/30-Days-Of-Python/blob/master/readme.md)| [Part 3 >>](#)
|
||||
|
||||
Loading…
Reference in New Issue
Block a user