Fix markup.
This commit is contained in:
parent
3440c42f33
commit
10e0e30101
|
@ -365,9 +365,9 @@ with no duplicate elements. Basic uses include membership testing and
|
||||||
eliminating duplicate entries. Set objects also support mathematical operations
|
eliminating duplicate entries. Set objects also support mathematical operations
|
||||||
like union, intersection, difference, and symmetric difference.
|
like union, intersection, difference, and symmetric difference.
|
||||||
|
|
||||||
Curly braces or the :func:`set` function can be use to create sets. Note:
|
Curly braces or the :func:`set` function can be use to create sets. Note: To
|
||||||
To create an empty set you have to use set(), not {}; the latter creates
|
create an empty set you have to use ``set()``, not ``{}``; the latter creates an
|
||||||
an empty dictionary, a data structure that we discuss in the next section.
|
empty dictionary, a data structure that we discuss in the next section.
|
||||||
|
|
||||||
Here is a brief demonstration::
|
Here is a brief demonstration::
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue