mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 12:35:34 -04:00
8 lines
58 B
Python
8 lines
58 B
Python
# basic sets
|
|
|
|
s = {1}
|
|
print(s)
|
|
|
|
s = {3, 4, 3, 1}
|
|
print(s)
|