Minor typo fix in Day 7

This commit is contained in:
Rasbin Rijal 2019-11-26 10:19:49 +02:00 committed by GitHub
parent 499555cb01
commit e15a45c8d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 >>](#)