mirror of
https://github.com/micropython/micropython.git
synced 2025-09-05 17:30:41 +02:00
10 lines
133 B
Python
10 lines
133 B
Python
try:
|
|
zip
|
|
set
|
|
except NameError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
print(list(zip()))
|
|
print(list(zip([1], set([2, 3]))))
|