6 lines
105 B
Python
6 lines
105 B
Python
|
#Create a new empty set
|
||
|
x = set()
|
||
|
print(x)
|
||
|
#Create a non empty set
|
||
|
n = set([0, 1, 2, 3, 4])
|
||
|
print(n)
|