30-Days-Of-Python
30-Days-Of-Python copied to clipboard
Mistake in day 7
Here is a mistake in day 7 -> https://github.com/Asabeneh/30-Days-Of-Python/blob/master/07_Day_Sets/07_sets.md
Creating an empty set
syntax
st = {}
That will actually create an empty dictionary, not a set.
I would like to contribute here,Please assign this issue to me.
Yes. It is a mistake. According to official python doc, nly way to create empty set is with set() function.