4 lines
86 B
Python
4 lines
86 B
Python
#Create a set
|
|
num_set = set([0, 1, 2, 3, 4, 5])
|
|
for n in num_set:
|
|
print(n) |