mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
13 lines
178 B
Python
13 lines
178 B
Python
try:
|
|
frozenset
|
|
except NameError:
|
|
print("SKIP")
|
|
import sys
|
|
sys.exit()
|
|
|
|
s = frozenset({1, 2, 3, 4})
|
|
t = s.copy()
|
|
print(type(t))
|
|
for i in s, t:
|
|
print(sorted(i))
|